We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07eb5c3 commit ea4904fCopy full SHA for ea4904f
gradle/build-scan.gradle
@@ -40,6 +40,9 @@ buildScan {
40
41
// Jenkins-specific build scan metadata
42
if (jenkinsUrl) {
43
+ // Disable async upload in CI to ensure scan upload completes before CI agent is terminated
44
+ uploadInBackground = false
45
+
46
// Parse job name in the case of matrix builds
47
// Matrix job names come in the form of "base-job-name/matrix_param1=value1,matrix_param2=value2"
48
def splitJobName = jobName.split('/')
settings.gradle
@@ -1,5 +1,5 @@
1
plugins {
2
- id "com.gradle.enterprise" version "3.2"
+ id "com.gradle.enterprise" version "3.3"
3
}
4
5
String dirName = rootProject.projectDir.name
0 commit comments