File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,10 @@ jobs:
102
102
"-PmaxTestRetries=${{ inputs.max-test-retries }}"
103
103
${{ inputs.no-build-cache && '--no-build-cache' || '' }}
104
104
105
+ - name : Build scan
106
+ if : ${{ !cancelled() && hashFiles('build-scan.txt') != '' }}
107
+ run : cat build-scan.txt
108
+
105
109
integration-test :
106
110
runs-on : ubuntu-latest
107
111
steps :
@@ -121,6 +125,10 @@ jobs:
121
125
- name : Integration test
122
126
run : ./gradlew integrationTest "-PmaxTestRetries=${{ inputs.max-test-retries }}" ${{ inputs.no-build-cache && '--no-build-cache' || '' }}
123
127
128
+ - name : Build scan
129
+ if : ${{ !cancelled() && hashFiles('build-scan.txt') != '' }}
130
+ run : cat build-scan.txt
131
+
124
132
- name : Save integration test results
125
133
uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
126
134
if : always()
Original file line number Diff line number Diff line change @@ -29,6 +29,12 @@ develocity {
29
29
publishing.onlyIf { System .getenv(" CI" ) != null }
30
30
termsOfUseUrl.set(" https://gradle.com/help/legal-terms-of-use" )
31
31
termsOfUseAgree.set(" yes" )
32
+
33
+ buildScanPublished {
34
+ File (" build-scan.txt" ).printWriter().use { writer ->
35
+ writer.println (buildScanUri)
36
+ }
37
+ }
32
38
}
33
39
}
34
40
You can’t perform that action at this time.
0 commit comments