Skip to content

Commit 87accd1

Browse files
authored
Merge pull request #673 from gradle/erichaagdev/develocity-rename
All user facing components are renamed to Develocity
2 parents 8aecdd0 + 9ab1005 commit 87accd1

30 files changed

+317
-225
lines changed

.github/actions/gradle/download/action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ runs:
2020
fi
2121
2222
# Get the download url of the latest release
23-
downloadUrl=$(curl "${curlOpts[@]}" https://api.github.com/repos/gradle/gradle-enterprise-build-validation-scripts/releases/latest | jq -c '.assets[] | select(.content_type == "application/zip")' | jq -r .browser_download_url | grep -v maven)
23+
downloadUrl=$(curl "${curlOpts[@]}" https://api.github.com/repos/gradle/gradle-enterprise-build-validation-scripts/releases/latest | jq -c '.assets[] | select(.content_type == "application/zip")' | jq -r .browser_download_url | grep develocity-gradle)
2424
2525
# Download the latest version of the build validation scripts
26-
curl "${curlOpts[@]}" --output gradle-enterprise-gradle-build-validation.zip $downloadUrl
26+
curl "${curlOpts[@]}" --output develocity-gradle-build-validation.zip $downloadUrl
2727
2828
# Unzip the downloaded build validation scripts
29-
unzip -q -o gradle-enterprise-gradle-build-validation.zip
29+
unzip -q -o develocity-gradle-build-validation.zip
3030
shell: bash

.github/actions/gradle/experiment-1/action.yml

+16-2
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,18 @@ inputs:
2323
args:
2424
description: "Additional arguments to pass to Gradle"
2525
required: false
26+
develocityUrl:
27+
description: "The URL for the Develocity server to connect to"
28+
required: false
2629
gradleEnterpriseUrl:
30+
deprecationMessage: "This parameter is deprecated and will be removed in a future release. Use 'develocityUrl' instead."
2731
description: "The URL for the Gradle Enterprise server to connect to"
2832
required: false
33+
enableDevelocity:
34+
description: "Enables Develocity on a project not already connected"
35+
required: false
2936
enableGradleEnterprise:
37+
deprecationMessage: "This parameter is deprecated and will be removed in a future release. Use 'enableDevelocity' instead."
3038
description: "Enables Gradle Enterprise on a project not already connected"
3139
required: false
3240
outputs:
@@ -76,13 +84,19 @@ runs:
7684
if [ ! -z "${{ inputs.gradleEnterpriseUrl }}" ]; then
7785
ARG_GE_URL="${{ inputs.gradleEnterpriseUrl }}"
7886
fi
87+
if [ ! -z "${{ inputs.develocityUrl }}" ]; then
88+
ARG_GE_URL="${{ inputs.develocityUrl }}"
89+
fi
7990
ARG_GE_ENABLE=""
8091
if [ "${{ inputs.enableGradleEnterprise }}" == "true" ]; then
8192
ARG_GE_ENABLE="${{ inputs.enableGradleEnterprise }}"
8293
fi
94+
if [ "${{ inputs.enableDeveocity }}" == "true" ]; then
95+
ARG_GE_ENABLE="${{ inputs.enableDeveocity }}"
96+
fi
8397
8498
# Navigate into the folder containing the validation scripts
85-
cd gradle-enterprise-gradle-build-validation
99+
cd develocity-gradle-build-validation
86100
87101
# Run the experiment
88102
./01-validate-incremental-building.sh \
@@ -112,7 +126,7 @@ runs:
112126
uses: actions/upload-artifact@v4
113127
with:
114128
name: experiment-1-receipt-${{ github.job }}${{ strategy.job-total > 1 && format('-{0}', strategy.job-index) || '' }}
115-
path: gradle-enterprise-gradle-build-validation/.data/01-validate-incremental-building/latest*/exp1-*.receipt
129+
path: develocity-gradle-build-validation/.data/01-validate-incremental-building/latest*/exp1-*.receipt
116130
- name: Add artifact link to summary
117131
run: |
118132
echo "-------------" >> $GITHUB_STEP_SUMMARY

.github/actions/gradle/experiment-2/action.yml

+16-2
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,18 @@ inputs:
2323
args:
2424
description: "Additional arguments to pass to Gradle"
2525
required: false
26+
develocityUrl:
27+
description: "The URL for the Develocity server to connect to"
28+
required: false
2629
gradleEnterpriseUrl:
30+
deprecationMessage: "This parameter is deprecated and will be removed in a future release. Use 'develocityUrl' instead."
2731
description: "The URL for the Gradle Enterprise server to connect to"
2832
required: false
33+
enableDevelocity:
34+
description: "Enables Develocity on a project not already connected"
35+
required: false
2936
enableGradleEnterprise:
37+
deprecationMessage: "This parameter is deprecated and will be removed in a future release. Use 'enableDevelocity' instead."
3038
description: "Enables Gradle Enterprise on a project not already connected"
3139
required: false
3240
failIfNotFullyCacheable:
@@ -79,17 +87,23 @@ runs:
7987
if [ ! -z "${{ inputs.gradleEnterpriseUrl }}" ]; then
8088
ARG_GE_URL="${{ inputs.gradleEnterpriseUrl }}"
8189
fi
90+
if [ ! -z "${{ inputs.develocityUrl }}" ]; then
91+
ARG_GE_URL="${{ inputs.develocityUrl }}"
92+
fi
8293
ARG_GE_ENABLE=""
8394
if [ "${{ inputs.enableGradleEnterprise }}" == "true" ]; then
8495
ARG_GE_ENABLE="${{ inputs.enableGradleEnterprise }}"
8596
fi
97+
if [ "${{ inputs.enableDeveocity }}" == "true" ]; then
98+
ARG_GE_ENABLE="${{ inputs.enableDeveocity }}"
99+
fi
86100
ARG_FAIL_IF_NOT_FULLY_CACHEABLE=""
87101
if [ "${{ inputs.failIfNotFullyCacheable }}" == "true" ]; then
88102
ARG_FAIL_IF_NOT_FULLY_CACHEABLE="${{ inputs.failIfNotFullyCacheable }}"
89103
fi
90104
91105
# Navigate into the folder containing the validation scripts
92-
cd gradle-enterprise-gradle-build-validation
106+
cd develocity-gradle-build-validation
93107
94108
# Run the experiment
95109
./02-validate-local-build-caching-same-location.sh \
@@ -120,7 +134,7 @@ runs:
120134
uses: actions/upload-artifact@v4
121135
with:
122136
name: experiment-2-receipt-${{ github.job }}${{ strategy.job-total > 1 && format('-{0}', strategy.job-index) || '' }}
123-
path: gradle-enterprise-gradle-build-validation/.data/02-validate-local-build-caching-same-location/latest*/exp2-*.receipt
137+
path: develocity-gradle-build-validation/.data/02-validate-local-build-caching-same-location/latest*/exp2-*.receipt
124138
- name: Add artifact link to summary
125139
run: |
126140
echo "-------------" >> $GITHUB_STEP_SUMMARY

.github/actions/gradle/experiment-3/action.yml

+16-2
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,18 @@ inputs:
2323
args:
2424
description: "Additional arguments to pass to Gradle"
2525
required: false
26+
develocityUrl:
27+
description: "The URL for the Develocity server to connect to"
28+
required: false
2629
gradleEnterpriseUrl:
30+
deprecationMessage: "This parameter is deprecated and will be removed in a future release. Use 'develocityUrl' instead."
2731
description: "The URL for the Gradle Enterprise server to connect to"
2832
required: false
33+
enableDevelocity:
34+
description: "Enables Develocity on a project not already connected"
35+
required: false
2936
enableGradleEnterprise:
37+
deprecationMessage: "This parameter is deprecated and will be removed in a future release. Use 'enableDevelocity' instead."
3038
description: "Enables Gradle Enterprise on a project not already connected"
3139
required: false
3240
failIfNotFullyCacheable:
@@ -79,17 +87,23 @@ runs:
7987
if [ ! -z "${{ inputs.gradleEnterpriseUrl }}" ]; then
8088
ARG_GE_URL="${{ inputs.gradleEnterpriseUrl }}"
8189
fi
90+
if [ ! -z "${{ inputs.develocityUrl }}" ]; then
91+
ARG_GE_URL="${{ inputs.develocityUrl }}"
92+
fi
8293
ARG_GE_ENABLE=""
8394
if [ "${{ inputs.enableGradleEnterprise }}" == "true" ]; then
8495
ARG_GE_ENABLE="${{ inputs.enableGradleEnterprise }}"
8596
fi
97+
if [ "${{ inputs.enableDeveocity }}" == "true" ]; then
98+
ARG_GE_ENABLE="${{ inputs.enableDeveocity }}"
99+
fi
86100
ARG_FAIL_IF_NOT_FULLY_CACHEABLE=""
87101
if [ "${{ inputs.failIfNotFullyCacheable }}" == "true" ]; then
88102
ARG_FAIL_IF_NOT_FULLY_CACHEABLE="${{ inputs.failIfNotFullyCacheable }}"
89103
fi
90104
91105
# Navigate into the folder containing the validation scripts
92-
cd gradle-enterprise-gradle-build-validation
106+
cd develocity-gradle-build-validation
93107
94108
# Run the experiment
95109
./03-validate-local-build-caching-different-locations.sh \
@@ -120,7 +134,7 @@ runs:
120134
uses: actions/upload-artifact@v4
121135
with:
122136
name: experiment-3-receipt-${{ github.job }}${{ strategy.job-total > 1 && format('-{0}', strategy.job-index) || '' }}
123-
path: gradle-enterprise-gradle-build-validation/.data/03-validate-local-build-caching-different-locations/latest*/exp3-*.receipt
137+
path: develocity-gradle-build-validation/.data/03-validate-local-build-caching-different-locations/latest*/exp3-*.receipt
124138
- name: Add artifact link to summary
125139
run: |
126140
echo "-------------" >> $GITHUB_STEP_SUMMARY

.github/actions/maven/download/action.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ runs:
2020
fi
2121
2222
# Get the download url of the latest release
23-
downloadUrl=$(curl "${curlOpts[@]}" https://api.github.com/repos/gradle/gradle-enterprise-build-validation-scripts/releases/latest | jq -c '.assets[] | select(.content_type == "application/zip")' | jq -r .browser_download_url | grep maven)
24-
23+
downloadUrl=$(curl "${curlOpts[@]}" https://api.github.com/repos/gradle/gradle-enterprise-build-validation-scripts/releases/latest | jq -c '.assets[] | select(.content_type == "application/zip")' | jq -r .browser_download_url | grep develocity-maven)
24+
2525
# Download the latest version of the build validation scripts
26-
curl "${curlOpts[@]}" --output gradle-enterprise-maven-build-validation.zip $downloadUrl
26+
curl "${curlOpts[@]}" --output develocity-maven-build-validation.zip $downloadUrl
2727
2828
# Unzip the downloaded build validation scripts
29-
unzip -q -o gradle-enterprise-maven-build-validation.zip
29+
unzip -q -o develocity-maven-build-validation.zip
3030
shell: bash

.github/actions/maven/experiment-1/action.yml

+16-2
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,18 @@ inputs:
2323
args:
2424
description: "Additional arguments to pass to Maven"
2525
required: false
26+
develocityUrl:
27+
description: "The URL for the Develocity server to connect to"
28+
required: false
2629
gradleEnterpriseUrl:
30+
deprecationMessage: "This parameter is deprecated and will be removed in a future release. Use 'develocityUrl' instead."
2731
description: "The URL for the Gradle Enterprise server to connect to"
2832
required: false
33+
enableDevelocity:
34+
description: "Enables Develocity on a project not already connected"
35+
required: false
2936
enableGradleEnterprise:
37+
deprecationMessage: "This parameter is deprecated and will be removed in a future release. Use 'enableDevelocity' instead."
3038
description: "Enables Gradle Enterprise on a project not already connected"
3139
required: false
3240
failIfNotFullyCacheable:
@@ -79,17 +87,23 @@ runs:
7987
if [ ! -z "${{ inputs.gradleEnterpriseUrl }}" ]; then
8088
ARG_GE_URL="${{ inputs.gradleEnterpriseUrl }}"
8189
fi
90+
if [ ! -z "${{ inputs.develocityUrl }}" ]; then
91+
ARG_GE_URL="${{ inputs.develocityUrl }}"
92+
fi
8293
ARG_GE_ENABLE=""
8394
if [ "${{ inputs.enableGradleEnterprise }}" == "true" ]; then
8495
ARG_GE_ENABLE="${{ inputs.enableGradleEnterprise }}"
8596
fi
97+
if [ "${{ inputs.enableDeveocity }}" == "true" ]; then
98+
ARG_GE_ENABLE="${{ inputs.enableDeveocity }}"
99+
fi
86100
ARG_FAIL_IF_NOT_FULLY_CACHEABLE=""
87101
if [ "${{ inputs.failIfNotFullyCacheable }}" == "true" ]; then
88102
ARG_FAIL_IF_NOT_FULLY_CACHEABLE="${{ inputs.failIfNotFullyCacheable }}"
89103
fi
90104
91105
# Navigate into the folder containing the validation scripts
92-
cd gradle-enterprise-maven-build-validation
106+
cd develocity-maven-build-validation
93107
94108
# Run the experiment
95109
./01-validate-local-build-caching-same-location.sh \
@@ -120,7 +134,7 @@ runs:
120134
uses: actions/upload-artifact@v4
121135
with:
122136
name: experiment-1-receipt-${{ github.job }}${{ strategy.job-total > 1 && format('-{0}', strategy.job-index) || '' }}
123-
path: gradle-enterprise-maven-build-validation/.data/01-validate-local-build-caching-same-location/latest*/exp1-*.receipt
137+
path: develocity-maven-build-validation/.data/01-validate-local-build-caching-same-location/latest*/exp1-*.receipt
124138
- name: Add artifact link to summary
125139
run: |
126140
echo "-------------" >> $GITHUB_STEP_SUMMARY

.github/actions/maven/experiment-2/action.yml

+16-2
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,18 @@ inputs:
2323
args:
2424
description: "Additional arguments to pass to Maven"
2525
required: false
26+
develocityUrl:
27+
description: "The URL for the Develocity server to connect to"
28+
required: false
2629
gradleEnterpriseUrl:
30+
deprecationMessage: "This parameter is deprecated and will be removed in a future release. Use 'develocityUrl' instead."
2731
description: "The URL for the Gradle Enterprise server to connect to"
2832
required: false
33+
enableDevelocity:
34+
description: "Enables Develocity on a project not already connected"
35+
required: false
2936
enableGradleEnterprise:
37+
deprecationMessage: "This parameter is deprecated and will be removed in a future release. Use 'enableDevelocity' instead."
3038
description: "Enables Gradle Enterprise on a project not already connected"
3139
required: false
3240
failIfNotFullyCacheable:
@@ -79,17 +87,23 @@ runs:
7987
if [ ! -z "${{ inputs.gradleEnterpriseUrl }}" ]; then
8088
ARG_GE_URL="${{ inputs.gradleEnterpriseUrl }}"
8189
fi
90+
if [ ! -z "${{ inputs.develocityUrl }}" ]; then
91+
ARG_GE_URL="${{ inputs.develocityUrl }}"
92+
fi
8293
ARG_GE_ENABLE=""
8394
if [ "${{ inputs.enableGradleEnterprise }}" == "true" ]; then
8495
ARG_GE_ENABLE="${{ inputs.enableGradleEnterprise }}"
8596
fi
97+
if [ "${{ inputs.enableDeveocity }}" == "true" ]; then
98+
ARG_GE_ENABLE="${{ inputs.enableDeveocity }}"
99+
fi
86100
ARG_FAIL_IF_NOT_FULLY_CACHEABLE=""
87101
if [ "${{ inputs.failIfNotFullyCacheable }}" == "true" ]; then
88102
ARG_FAIL_IF_NOT_FULLY_CACHEABLE="${{ inputs.failIfNotFullyCacheable }}"
89103
fi
90104
91105
# Navigate into the folder containing the validation scripts
92-
cd gradle-enterprise-maven-build-validation
106+
cd develocity-maven-build-validation
93107
94108
# Run the experiment
95109
./02-validate-local-build-caching-different-locations.sh \
@@ -120,7 +134,7 @@ runs:
120134
uses: actions/upload-artifact@v4
121135
with:
122136
name: experiment-2-receipt-${{ github.job }}${{ strategy.job-total > 1 && format('-{0}', strategy.job-index) || '' }}
123-
path: gradle-enterprise-maven-build-validation/.data/02-validate-local-build-caching-different-locations/latest*/exp2-*.receipt
137+
path: develocity-maven-build-validation/.data/02-validate-local-build-caching-different-locations/latest*/exp2-*.receipt
124138
- name: Add artifact link to summary
125139
run: |
126140
echo "-------------" >> $GITHUB_STEP_SUMMARY

.github/workflows/cross-platform-testing-build-from-source.yml

+22-31
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
with:
2626
name: artifacts
2727
path: |
28-
build/distributions/gradle-enterprise-gradle-build-validation-*.zip
29-
build/distributions/gradle-enterprise-maven-build-validation-*.zip
28+
build/distributions/develocity-gradle-build-validation-*.zip
29+
build/distributions/develocity-maven-build-validation-*.zip
3030
3131
cross_platform_tests:
3232
name: Test
@@ -85,41 +85,32 @@ jobs:
8585
name: artifacts
8686
- name: Extract build validation scripts
8787
run: |
88-
unzip -o gradle-enterprise-gradle-build-validation-*.zip
89-
unzip -o gradle-enterprise-maven-build-validation-*.zip
88+
unzip -o develocity-gradle-build-validation-*.zip
89+
unzip -o develocity-maven-build-validation-*.zip
9090
- name: Run Gradle Experiment 01
91-
run: |
92-
cd gradle-enterprise-gradle-build-validation
93-
./01-validate-incremental-building.sh -r https://github.com/etiennestuder/java-ordered-properties -t build -s https://ge.solutions-team.gradle.com
91+
working-directory: develocity-gradle-build-validation
92+
run: ./01-validate-incremental-building.sh -r https://github.com/etiennestuder/java-ordered-properties -t build -s https://ge.solutions-team.gradle.com
9493
- name: Run Gradle Experiment 02
95-
run: |
96-
cd gradle-enterprise-gradle-build-validation
97-
./02-validate-local-build-caching-same-location.sh -r https://github.com/etiennestuder/java-ordered-properties -t build -s https://ge.solutions-team.gradle.com
94+
working-directory: develocity-gradle-build-validation
95+
run: ./02-validate-local-build-caching-same-location.sh -r https://github.com/etiennestuder/java-ordered-properties -t build -s https://ge.solutions-team.gradle.com
9896
- name: Run Gradle Experiment 03
99-
run: |
100-
cd gradle-enterprise-gradle-build-validation
101-
./03-validate-local-build-caching-different-locations.sh -r https://github.com/etiennestuder/java-ordered-properties -t build -s https://ge.solutions-team.gradle.com
97+
working-directory: develocity-gradle-build-validation
98+
run: ./03-validate-local-build-caching-different-locations.sh -r https://github.com/etiennestuder/java-ordered-properties -t build -s https://ge.solutions-team.gradle.com
10299
- name: Run Gradle Experiment 04
103-
run: |
104-
cd gradle-enterprise-gradle-build-validation
105-
./04-validate-remote-build-caching-ci-ci.sh -1 https://ge.solutions-team.gradle.com/s/p4ghldkcscfwi -2 https://ge.solutions-team.gradle.com/s/jhzljnet32x5m
100+
working-directory: develocity-gradle-build-validation
101+
run: ./04-validate-remote-build-caching-ci-ci.sh -1 https://ge.solutions-team.gradle.com/s/p4ghldkcscfwi -2 https://ge.solutions-team.gradle.com/s/jhzljnet32x5m
106102
- name: Run Gradle Experiment 05
107-
run: |
108-
cd gradle-enterprise-gradle-build-validation
109-
./05-validate-remote-build-caching-ci-local.sh -1 https://ge.solutions-team.gradle.com/s/cemwsttqjhzhq -s https://ge.solutions-team.gradle.com -u https://ge.solutions-team.gradle.com/cache/
103+
working-directory: develocity-gradle-build-validation
104+
run: ./05-validate-remote-build-caching-ci-local.sh -1 https://ge.solutions-team.gradle.com/s/cemwsttqjhzhq -s https://ge.solutions-team.gradle.com -u https://ge.solutions-team.gradle.com/cache/
110105
- name: Run Maven Experiment 01
111-
run: |
112-
cd gradle-enterprise-maven-build-validation
113-
./01-validate-local-build-caching-same-location.sh -r https://github.com/gradle/maven-build-scan-quickstart.git -g test -s https://ge.solutions-team.gradle.com
106+
working-directory: develocity-maven-build-validation
107+
run: ./01-validate-local-build-caching-same-location.sh -r https://github.com/gradle/maven-build-scan-quickstart.git -g test -s https://ge.solutions-team.gradle.com
114108
- name: Run Maven Experiment 02
115-
run: |
116-
cd gradle-enterprise-maven-build-validation
117-
./02-validate-local-build-caching-different-locations.sh -r https://github.com/gradle/maven-build-scan-quickstart.git -g test -s https://ge.solutions-team.gradle.com
109+
working-directory: develocity-maven-build-validation
110+
run: ./02-validate-local-build-caching-different-locations.sh -r https://github.com/gradle/maven-build-scan-quickstart.git -g test -s https://ge.solutions-team.gradle.com
118111
- name: Run Maven Experiment 03
119-
run: |
120-
cd gradle-enterprise-maven-build-validation
121-
./03-validate-remote-build-caching-ci-ci.sh -1 https://ge.solutions-team.gradle.com/s/sysk4hrdbkja6 -2 https://ge.solutions-team.gradle.com/s/f7yfwfxqzg5us
112+
working-directory: develocity-maven-build-validation
113+
run: ./03-validate-remote-build-caching-ci-ci.sh -1 https://ge.solutions-team.gradle.com/s/sysk4hrdbkja6 -2 https://ge.solutions-team.gradle.com/s/f7yfwfxqzg5us
122114
- name: Run Maven Experiment 04
123-
run: |
124-
cd gradle-enterprise-maven-build-validation
125-
./04-validate-remote-build-caching-ci-local.sh -1 https://ge.solutions-team.gradle.com/s/6jgkaknikci2c -e -s https://ge.solutions-team.gradle.com
115+
working-directory: develocity-maven-build-validation
116+
run: ./04-validate-remote-build-caching-ci-local.sh -1 https://ge.solutions-team.gradle.com/s/6jgkaknikci2c -e -s https://ge.solutions-team.gradle.com

0 commit comments

Comments
 (0)