Skip to content

Commit ef022d3

Browse files
committed
[improve][ci] Switch to use DEVELOCITY_ACCESS_KEY from GRADLE_ENTERPRISE_ACCESS_KEY (#23090)
(cherry picked from commit a0bdf45)
1 parent c1aab48 commit ef022d3

5 files changed

+13
-13
lines changed

.github/workflows/ci-maven-cache-update.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
name: Update Maven dependency cache for ${{ matrix.name }}
5050
env:
5151
JOB_NAME: Update Maven dependency cache for ${{ matrix.name }}
52-
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
52+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
5353
runs-on: ${{ matrix.runs-on }}
5454
timeout-minutes: 45
5555

.github/workflows/ci-owasp-dependency-check.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
name: Check ${{ matrix.branch }}
3535
env:
3636
JOB_NAME: Check ${{ matrix.branch }}
37-
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
37+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
3838
runs-on: ubuntu-22.04
3939
timeout-minutes: 75
4040
strategy:

.github/workflows/pulsar-ci-flaky.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ jobs:
145145
env:
146146
JOB_NAME: Flaky tests suite
147147
COLLECT_COVERAGE: "${{ needs.preconditions.outputs.collect_coverage }}"
148-
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
148+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
149149
CI_JDK_MAJOR_VERSION: ${{ needs.preconditions.outputs.jdk_major_version }}
150150
TRACE_TEST_RESOURCE_CLEANUP: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.trace_test_resource_cleanup || 'off' }}
151151
TRACE_TEST_RESOURCE_CLEANUP_DIR: ${{ github.workspace }}/target/trace-test-resource-cleanup

.github/workflows/pulsar-ci.yaml

+9-9
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ jobs:
145145
name: Build and License check
146146
env:
147147
JOB_NAME: Build and License check
148-
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
148+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
149149
CI_JDK_MAJOR_VERSION: ${{ needs.preconditions.outputs.jdk_major_version }}
150150
runs-on: ubuntu-22.04
151151
timeout-minutes: 60
@@ -222,7 +222,7 @@ jobs:
222222
env:
223223
JOB_NAME: CI - Unit - ${{ matrix.name }}
224224
COLLECT_COVERAGE: "${{ needs.preconditions.outputs.collect_coverage }}"
225-
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
225+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
226226
CI_JDK_MAJOR_VERSION: ${{ needs.preconditions.outputs.jdk_major_version }}
227227
TRACE_TEST_RESOURCE_CLEANUP: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.trace_test_resource_cleanup || 'off' }}
228228
TRACE_TEST_RESOURCE_CLEANUP_DIR: ${{ github.workspace }}/target/trace-test-resource-cleanup
@@ -464,7 +464,7 @@ jobs:
464464
needs: ['preconditions', 'build-and-license-check']
465465
if: ${{ needs.preconditions.outputs.docs_only != 'true'}}
466466
env:
467-
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
467+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
468468
CI_JDK_MAJOR_VERSION: ${{ needs.preconditions.outputs.jdk_major_version }}
469469
IMAGE_JDK_MAJOR_VERSION: ${{ needs.preconditions.outputs.jdk_major_version }}
470470
steps:
@@ -540,7 +540,7 @@ jobs:
540540
env:
541541
JOB_NAME: CI - Integration - ${{ matrix.name }}
542542
PULSAR_TEST_IMAGE_NAME: apachepulsar/java-test-image:latest
543-
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
543+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
544544
CI_JDK_MAJOR_VERSION: ${{ needs.preconditions.outputs.jdk_major_version }}
545545
strategy:
546546
fail-fast: false
@@ -815,7 +815,7 @@ jobs:
815815
needs: ['preconditions', 'build-and-license-check']
816816
if: ${{ needs.preconditions.outputs.docs_only != 'true' }}
817817
env:
818-
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
818+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
819819
CI_JDK_MAJOR_VERSION: ${{ needs.preconditions.outputs.jdk_major_version }}
820820
IMAGE_JDK_MAJOR_VERSION: ${{ needs.preconditions.outputs.jdk_major_version }}
821821
steps:
@@ -927,7 +927,7 @@ jobs:
927927
env:
928928
JOB_NAME: CI - System - ${{ matrix.name }}
929929
PULSAR_TEST_IMAGE_NAME: apachepulsar/pulsar-test-latest-version:latest
930-
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
930+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
931931
CI_JDK_MAJOR_VERSION: ${{ needs.preconditions.outputs.jdk_major_version }}
932932
strategy:
933933
fail-fast: false
@@ -1157,7 +1157,7 @@ jobs:
11571157
env:
11581158
JOB_NAME: CI Flaky - System - ${{ matrix.name }}
11591159
PULSAR_TEST_IMAGE_NAME: apachepulsar/pulsar-test-latest-version:latest
1160-
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
1160+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
11611161
CI_JDK_MAJOR_VERSION: ${{ needs.preconditions.outputs.jdk_major_version }}
11621162
strategy:
11631163
fail-fast: false
@@ -1300,7 +1300,7 @@ jobs:
13001300
needs: ['preconditions', 'integration-tests']
13011301
if: ${{ needs.preconditions.outputs.docs_only != 'true' }}
13021302
env:
1303-
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
1303+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
13041304
CI_JDK_MAJOR_VERSION: ${{ needs.preconditions.outputs.jdk_major_version }}
13051305
steps:
13061306
- name: checkout
@@ -1336,7 +1336,7 @@ jobs:
13361336
needs: [ 'preconditions', 'integration-tests' ]
13371337
if: ${{ needs.preconditions.outputs.need_owasp == 'true' }}
13381338
env:
1339-
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
1339+
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
13401340
CI_JDK_MAJOR_VERSION: ${{ needs.preconditions.outputs.jdk_major_version }}
13411341
NIST_NVD_API_KEY: ${{ secrets.NIST_NVD_API_KEY }}
13421342
steps:

.mvn/extensions.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<extension>
2525
<groupId>com.gradle</groupId>
2626
<artifactId>develocity-maven-extension</artifactId>
27-
<version>1.21.4</version>
27+
<version>1.21.6</version>
2828
</extension>
2929
<extension>
3030
<groupId>com.gradle</groupId>

0 commit comments

Comments
 (0)