File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 5858 - name : GenerateGrammarSource
5959 run : ./gradlew clean generateGrammarSource --parallel --daemon --scan
6060 env :
61- DEVELOCITY_ACCESS_KEY : ${{ secrets.GE_ACCESS_TOKEN }}
61+ DEVELOCITY_ACCESS_KEY : ${{ secrets.DEVELOCITY_ACCESS_KEY }}
6262
6363 - name : Set up JDK ${{ matrix.java }}
6464 uses : actions/setup-java@v4
@@ -72,12 +72,12 @@ jobs:
7272 ./gradlew clean build dist jacocoTestReport --parallel --daemon --scan
7373 -x spotlessJava -x generateGrammarSource -x generateDistLicense -x checkDeniedLicense
7474 env :
75- DEVELOCITY_ACCESS_KEY : ${{ secrets.GE_ACCESS_TOKEN }}
75+ DEVELOCITY_ACCESS_KEY : ${{ secrets.DEVELOCITY_ACCESS_KEY }}
7676
7777 - name : Install plugin
7878 run : ./gradlew installPlugin --scan
7979 env :
80- DEVELOCITY_ACCESS_KEY : ${{ secrets.GE_ACCESS_TOKEN }}
80+ DEVELOCITY_ACCESS_KEY : ${{ secrets.DEVELOCITY_ACCESS_KEY }}
8181
8282 - name : Upload coverage report to codecov.io
8383 run : bash <(curl -s https://codecov.io/bash) || echo 'Failed to upload coverage report!'
Original file line number Diff line number Diff line change 6868 if : matrix.language == 'java'
6969 run : ./gradlew clean assemble compileTestJava --parallel --daemon --scan
7070 env :
71- DEVELOCITY_ACCESS_KEY : ${{ secrets.GE_ACCESS_TOKEN }}
71+ DEVELOCITY_ACCESS_KEY : ${{ secrets.DEVELOCITY_ACCESS_KEY }}
7272
7373 - name : Perform CodeQL analysis
7474 uses : github/codeql-action/analyze@v3
Original file line number Diff line number Diff line change 1616 */
1717
1818plugins {
19- id ' com.gradle.develocity' version ' 3.18.1 '
19+ id ' com.gradle.develocity' version ' 3.18.2 '
2020 id ' com.gradle.common-custom-user-data-gradle-plugin' version ' 2.0.2'
2121}
2222
2323def isCiServer = System . getenv(). containsKey(" CI" )
2424
2525develocity {
26- server = " https://ge.apache.org"
26+ server = " https://develocity.apache.org"
27+ projectId = " eventmesh"
2728 buildScan {
2829 uploadInBackground = ! isCiServer
29- publishing. onlyIf { false }
30+ publishing. onlyIf { it . isAuthenticated() }
3031 obfuscation {
3132 ipAddresses { addresses -> addresses. collect { address -> " 0.0.0.0" } }
3233 }
You can’t perform that action at this time.
0 commit comments