Skip to content

Commit 0a699d9

Browse files
committed
Rename Develocity Build Validation Scripts repository references
1 parent 0e68f4d commit 0a699d9

File tree

12 files changed

+29
-29
lines changed

12 files changed

+29
-29
lines changed

.github/actions/gradle/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,25 @@ Create a GitHub Actions workflow with the following steps:
1414
```yaml
1515
steps:
1616
# Download the latest version of the build validation scripts
17-
- uses: gradle/gradle-enterprise-build-validation-scripts/.github/actions/gradle/download@actions-stable
17+
- uses: gradle/develocity-build-validation-scripts/.github/actions/gradle/download@actions-stable
1818
with:
1919
token: ${{ secrets.GITHUB_TOKEN }}
2020
# Run experiment 1
21-
- uses: gradle/gradle-enterprise-build-validation-scripts/.github/actions/gradle/experiment-1@actions-stable
21+
- uses: gradle/develocity-build-validation-scripts/.github/actions/gradle/experiment-1@actions-stable
2222
with:
2323
gitRepo: <PROJECT_GIT_URL>
2424
gitBranch: <PROJECT_BRANCH>
2525
tasks: <PROJECT_BUILD_TASK>
2626
...
2727
# Run experiment 2
28-
- uses: gradle/gradle-enterprise-build-validation-scripts/.github/actions/gradle/experiment-2@actions-stable
28+
- uses: gradle/develocity-build-validation-scripts/.github/actions/gradle/experiment-2@actions-stable
2929
with:
3030
gitRepo: <PROJECT_GIT_URL>
3131
gitBranch: <PROJECT_BRANCH>
3232
tasks: <PROJECT_BUILD_TASK>
3333
...
3434
# Run experiment 3
35-
- uses: gradle/gradle-enterprise-build-validation-scripts/.github/actions/gradle/experiment-3@actions-stable
35+
- uses: gradle/develocity-build-validation-scripts/.github/actions/gradle/experiment-3@actions-stable
3636
with:
3737
gitRepo: <PROJECT_GIT_URL>
3838
gitBranch: <PROJECT_BRANCH>
@@ -56,11 +56,11 @@ steps:
5656
with:
5757
path: project-to-validate # Check out the project to a directory named 'project-to-validate'
5858
- name: Download latest version of the validation scripts
59-
uses: gradle/gradle-enterprise-build-validation-scripts/.github/actions/gradle/download@actions-stable
59+
uses: gradle/develocity-build-validation-scripts/.github/actions/gradle/download@actions-stable
6060
with:
6161
token: ${{ secrets.GITHUB_TOKEN }}
6262
- name: Run experiment 3
63-
uses: gradle/gradle-enterprise-build-validation-scripts/.github/actions/gradle/experiment-3@actions-stable
63+
uses: gradle/develocity-build-validation-scripts/.github/actions/gradle/experiment-3@actions-stable
6464
with:
6565
gitRepo: "file://$GITHUB_WORKSPACE/project-to-validate" # Use 'project-to-validate' for the experiment
6666
tasks: <PROJECT_BUILD_TASK>
@@ -80,7 +80,7 @@ Create a GitHub Actions workflow with the following steps:
8080
```yaml
8181
steps:
8282
# Run configuration cache experiment
83-
- uses: gradle/gradle-enterprise-build-validation-scripts/.github/actions/gradle/experiment-config-cache@actions-stable
83+
- uses: gradle/develocity-build-validation-scripts/.github/actions/gradle/experiment-config-cache@actions-stable
8484
with:
8585
tasks: "build"
8686
args: "-Pfoo=bar"

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ runs:
2323
curlOpts+=(--header 'Authorization: Bearer ${{ inputs.token }}')
2424
fi
2525
26-
releaseUrl="https://api.github.com/repos/gradle/gradle-enterprise-build-validation-scripts/releases/latest"
26+
releaseUrl="https://api.github.com/repos/gradle/develocity-build-validation-scripts/releases/latest"
2727
if [ "${{ inputs.downloadDevelopmentRelease }}" == "true" ]; then
28-
releaseUrl="https://api.github.com/repos/gradle/gradle-enterprise-build-validation-scripts/releases/tags/development-latest"
28+
releaseUrl="https://api.github.com/repos/gradle/develocity-build-validation-scripts/releases/tags/development-latest"
2929
fi
3030
3131
# Get the download url of the latest development or released version

.github/actions/maven/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ Create a GitHub Actions workflow with the following steps:
1414
```yaml
1515
steps:
1616
# Download the latest version of the build validation scripts
17-
- uses: gradle/gradle-enterprise-build-validation-scripts/.github/actions/maven/download@actions-stable
17+
- uses: gradle/develocity-build-validation-scripts/.github/actions/maven/download@actions-stable
1818
with:
1919
token: ${{ secrets.GITHUB_TOKEN }}
2020
# Run experiment 1
21-
- uses: gradle/gradle-enterprise-build-validation-scripts/.github/actions/maven/experiment-1@actions-stable
21+
- uses: gradle/develocity-build-validation-scripts/.github/actions/maven/experiment-1@actions-stable
2222
with:
2323
gitRepo: <PROJECT_GIT_URL>
2424
gitBranch: <PROJECT_BRANCH>
2525
goals: <PROJECT_BUILD_GOAL>
2626
...
2727
# Run experiment 2
28-
- uses: gradle/gradle-enterprise-build-validation-scripts/.github/actions/maven/experiment-2@actions-stable
28+
- uses: gradle/develocity-build-validation-scripts/.github/actions/maven/experiment-2@actions-stable
2929
with:
3030
gitRepo: <PROJECT_GIT_URL>
3131
gitBranch: <PROJECT_BRANCH>
@@ -48,11 +48,11 @@ steps:
4848
uses: actions/checkout@v4
4949
with:
5050
path: project-to-validate # Check out the project to a directory named 'project-to-validate'
51-
- uses: gradle/gradle-enterprise-build-validation-scripts/.github/actions/maven/download@actions-stable
51+
- uses: gradle/develocity-build-validation-scripts/.github/actions/maven/download@actions-stable
5252
with:
5353
token: ${{ secrets.GITHUB_TOKEN }}
5454
- name: Run experiment 2
55-
uses: gradle/gradle-enterprise-build-validation-scripts/.github/actions/maven/experiment-2@actions-stable
55+
uses: gradle/develocity-build-validation-scripts/.github/actions/maven/experiment-2@actions-stable
5656
with:
5757
gitRepo: "file://$GITHUB_WORKSPACE/project-to-validate" # Use 'project-to-validate' for the experiment
5858
goals: <PROJECT_BUILD_GOAL>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ runs:
2323
curlOpts+=(--header 'Authorization: Bearer ${{ inputs.token }}')
2424
fi
2525
26-
releaseUrl="https://api.github.com/repos/gradle/gradle-enterprise-build-validation-scripts/releases/latest"
26+
releaseUrl="https://api.github.com/repos/gradle/develocity-build-validation-scripts/releases/latest"
2727
if [ "${{ inputs.downloadDevelopmentRelease }}" == "true" ]; then
28-
releaseUrl="https://api.github.com/repos/gradle/gradle-enterprise-build-validation-scripts/releases/tags/development-latest"
28+
releaseUrl="https://api.github.com/repos/gradle/develocity-build-validation-scripts/releases/tags/development-latest"
2929
fi
3030
3131
# Get the download url of the latest development or released version

.github/workflows/combine-dependabot-prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313

1414
jobs:
1515
combine-dependabot-prs:
16-
if: github.repository == 'gradle/gradle-enterprise-build-validation-scripts'
16+
if: github.repository == 'gradle/develocity-build-validation-scripts'
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: combine-dependabot-prs

.github/workflows/cross-platform-testing-use-development-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ jobs:
6060
distribution: ${{ matrix.os == 'macos-14' && 'zulu' || 'temurin' }} # No Temurin JDK 8 distribution for aarch64
6161
- name: Download and extract build validation Scripts
6262
run: |
63-
curl -L -O https://github.com/gradle/gradle-enterprise-build-validation-scripts/releases/download/development-latest/develocity-gradle-build-validation-dev.zip
63+
curl -L -O https://github.com/gradle/develocity-build-validation-scripts/releases/download/development-latest/develocity-gradle-build-validation-dev.zip
6464
unzip -o develocity-gradle-build-validation-*.zip
65-
curl -L -O https://github.com/gradle/gradle-enterprise-build-validation-scripts/releases/download/development-latest/develocity-maven-build-validation-dev.zip
65+
curl -L -O https://github.com/gradle/develocity-build-validation-scripts/releases/download/development-latest/develocity-maven-build-validation-dev.zip
6666
unzip -o develocity-maven-build-validation-*.zip
6767
- name: Run Gradle Experiment 01
6868
working-directory: develocity-gradle-build-validation

Gradle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The build validation scripts are compatible with a large range of Gradle version
2626
Use the following command to download and unpack the build validation scripts for Gradle to the current directory:
2727

2828
```bash
29-
curl -s -L -O https://github.com/gradle/gradle-enterprise-build-validation-scripts/releases/download/v2.7.2/develocity-gradle-build-validation-2.7.2.zip && unzip -q -o develocity-gradle-build-validation-2.7.2.zip
29+
curl -s -L -O https://github.com/gradle/develocity-build-validation-scripts/releases/download/v2.7.2/develocity-gradle-build-validation-2.7.2.zip && unzip -q -o develocity-gradle-build-validation-2.7.2.zip
3030
```
3131

3232
## Structure

Maven.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The build validation scripts are compatible with a large range of Maven versions
2626
Use the following command to download and unpack the build validation scripts for Maven to the current directory:
2727

2828
```bash
29-
curl -s -L -O https://github.com/gradle/gradle-enterprise-build-validation-scripts/releases/download/v2.7.2/develocity-maven-build-validation-2.7.2.zip && unzip -q -o develocity-maven-build-validation-2.7.2.zip
29+
curl -s -L -O https://github.com/gradle/develocity-build-validation-scripts/releases/download/v2.7.2/develocity-maven-build-validation-2.7.2.zip && unzip -q -o develocity-maven-build-validation-2.7.2.zip
3030
```
3131

3232
## Structure

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
# Develocity Build Validation Scripts
1010

11-
[![Verify Build](https://github.com/gradle/gradle-enterprise-build-validation-scripts/actions/workflows/build-verification.yml/badge.svg?branch=main)](https://github.com/gradle/gradle-enterprise-build-validation-scripts/actions/workflows/build-verification.yml)
11+
[![Verify Build](https://github.com/gradle/develocity-build-validation-scripts/actions/workflows/build-verification.yml/badge.svg?branch=main)](https://github.com/gradle/develocity-build-validation-scripts/actions/workflows/build-verification.yml)
1212
[![Revved up by Develocity](https://img.shields.io/badge/Revved%20up%20by-Develocity-06A0CE?logo=Gradle&labelColor=02303A)](https://ge.solutions-team.gradle.com/scans)
1313

1414
The purpose of the build validation scripts is to assist you in validating that your Gradle and Maven builds are in an optimal state in terms of maximizing work avoidance. The build validation scripts do not actually modify your build, but they surface what can be improved in your build to avoid unnecessary work in several scenarios.
@@ -43,7 +43,7 @@ Visit our website to learn more about [Develocity][develocity].
4343
The Develocity build validation scripts are open-source software released under the [Apache 2.0 License][apache-license].
4444

4545
[develocity-build-config-samples]: https://github.com/gradle/develocity-build-config-samples
46-
[develocity-build-validation-scripts]: https://github.com/gradle/gradle-enterprise-build-validation-scripts
46+
[develocity-build-validation-scripts]: https://github.com/gradle/develocity-build-validation-scripts
4747
[develocity-oss-projects]: https://github.com/gradle/develocity-oss-projects
4848
[ccud-gradle-plugin]: https://github.com/gradle/common-custom-user-data-gradle-plugin
4949
[ccud-maven-extension]: https://github.com/gradle/common-custom-user-data-maven-extension

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ val generateChecksums by tasks.registering(Checksum::class) {
376376
githubRelease {
377377
token((findProperty("github.access.token") ?: System.getenv("GITHUB_ACCESS_TOKEN") ?: "").toString())
378378
owner.set("gradle")
379-
repo.set("gradle-enterprise-build-validation-scripts")
379+
repo.set("develocity-build-validation-scripts")
380380
targetCommitish.set("main")
381381
releaseName.set(gitHubReleaseName())
382382
tagName.set(gitReleaseTag())

components/scripts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Develocity Build Validation Scripts
22
==========================================
33

44
Details and instructions on how to use the build validation scripts can be found here:
5-
https://github.com/gradle/gradle-enterprise-build-validation-scripts
5+
https://github.com/gradle/develocity-build-validation-scripts
66

77
The Develocity Build Validation scripts are open-source software released under the Apache 2.0 License:
88
https://www.apache.org/licenses/LICENSE-2.0.html

components/scripts/lib/interactive-mode.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ during daily development, it is advisable that you apply the Common Custom User
4545
Data Gradle plugin to your build. Details on how to apply the plugin are
4646
available from the documentation of the build validation scripts.
4747
48-
https://github.com/gradle/gradle-enterprise-build-validation-scripts/blob/main/Gradle.md#applying-the-common-custom-user-data-gradle-plugin
48+
https://github.com/gradle/develocity-build-validation-scripts/blob/main/Gradle.md#applying-the-common-custom-user-data-gradle-plugin
4949
5050
Your updated build configuration should be pushed before proceeding.
5151
@@ -73,7 +73,7 @@ during daily development, it is advisable that you apply the Common Custom User
7373
Data Maven extension to your build. Details on how to apply the extension are
7474
available from the documentation of the build validation scripts.
7575
76-
https://github.com/gradle/gradle-enterprise-build-validation-scripts/blob/main/Maven.md#applying-the-common-custom-user-data-maven-extension
76+
https://github.com/gradle/develocity-build-validation-scripts/blob/main/Maven.md#applying-the-common-custom-user-data-maven-extension
7777
7878
Your updated build configuration should be pushed before proceeding.
7979
@@ -239,9 +239,9 @@ explain_prerequisites_api_access() {
239239
fi
240240

241241
if [[ "${BUILD_TOOL}" == "Maven" ]]; then
242-
documentation_link="https://github.com/gradle/gradle-enterprise-build-validation-scripts/blob/main/Maven.md#authenticating-with-develocity"
242+
documentation_link="https://github.com/gradle/develocity-build-validation-scripts/blob/main/Maven.md#authenticating-with-develocity"
243243
else
244-
documentation_link="https://github.com/gradle/gradle-enterprise-build-validation-scripts/blob/main/Gradle.md#authenticating-with-develocity"
244+
documentation_link="https://github.com/gradle/develocity-build-validation-scripts/blob/main/Gradle.md#authenticating-with-develocity"
245245
fi
246246

247247
IFS='' read -r -d '' text <<EOF

0 commit comments

Comments
 (0)