You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add support for CLIENT_JAVA_HOME
Users can use CLIENT_JAVA_HOME to override which JVM is used to execute the
Build Scan clients. The other JVMs used (for running Gradle and for building
code) are not affected.
* Update release/changes.md
* Add missing backtick
* Remove extra space
* Fallback to using JAVA_HOME if CLIENT_JAVA_HOME is not set
* Add a section to the READMEs for setting the JVM used to fetch build scan data
* Add newline to separate sections
Co-authored-by: Eric Haag <[email protected]>
Signed-off-by: Jim Hurne <[email protected]>
* Polish docs
* Polish docs some more
* Polish docs some more
* Fix broken anchors
---------
Signed-off-by: Jim Hurne <[email protected]>
Co-authored-by: Eric Haag <[email protected]>
Co-authored-by: Etienne Studer <[email protected]>
## Specifying the JVM used to analyze the build data
170
+
171
+
The scripts use a Java-based utility to fetch and analyze the captured build data.
172
+
If you need to run the utility with a different Java Virtual Machine than what is configured by default on your system and used when running your builds,
173
+
then you can set the `CLIENT_JAVA_HOME` environment variable when invoking the scripts:
## Specifying the JVM used to analyze the build data
168
+
169
+
The scripts use a Java-based utility to fetch and analyze the captured build data.
170
+
If you need to run the utility with a different Java Virtual Machine than what is configured by default on your system and used when running your builds,
171
+
then you can set the `CLIENT_JAVA_HOME` environment variable when invoking the scripts:
Copy file name to clipboardExpand all lines: components/fetch-build-scan-data-cmdline-tool/src/main/java/com/gradle/enterprise/cli/FetchBuildScanDataCommand.java
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -56,6 +56,7 @@ public static class ExitCode {
56
56
publicIntegercall() {
57
57
// Use System.err for logging since we're going to write out the CSV to System.out
0 commit comments