-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build: set UTF-8 encoding for Gradle daemon process #13484
Conversation
Passing '-Dfile.encoding=UTF-8' to the Gradle command effectively has no effect as this only starts a small client process that connects to a (possibly already running) daemon process. These kind of JVM options need to be configured in 'gradle.properties' for the Daemon process. Signed-off-by: Jendrik Johannes <[email protected]>
Node: Unit Test Results 2 319 files ±0 2 319 suites ±0 3h 21m 27s ⏱️ ±0s Results for commit 50949d3. ± Comparison against base commit 8b12883. This pull request removes 358 and adds 121 tests. Note that renamed tests count towards both.
|
Node: HAPI Test (Token) Results 19 files 19 suites 6m 29s ⏱️ Results for commit 50949d3. |
Node: HAPI Test (Restart) Results2 tests 2 ✅ 7m 4s ⏱️ Results for commit 50949d3. |
Node: HAPI Test (Node Death Reconnect) Results2 tests 1 ✅ 7m 32s ⏱️ For more details on these failures, see this check. Results for commit 50949d3. |
Node: HAPI Test (Crypto) Results 22 files 22 suites 13m 10s ⏱️ Results for commit 50949d3. |
Node: HAPI Test (Smart Contract) Results 66 files 66 suites 22m 23s ⏱️ Results for commit 50949d3. |
Node: HAPI Test (Misc) Results 50 files 50 suites 23m 7s ⏱️ Results for commit 50949d3. |
Node: HAPI Test (Time Consuming) Results18 tests 18 ✅ 22m 6s ⏱️ Results for commit 50949d3. |
Signed-off-by: Jendrik Johannes <[email protected]> Signed-off-by: Bilyana Gospodinova <[email protected]>
Passing
-Dfile.encoding=UTF-8
to the Gradle command effectively has no effect as this only starts a small client process that connects to a (possibly already running) daemon process. These kind of JVM options need to be configured in 'gradle.properties' for the Daemon process.Description:
Related issue(s):
#11230
Notes for reviewer:
Checklist