From 048709780dbfc9ed016e38da02b1f8a30f17e08c Mon Sep 17 00:00:00 2001 From: Clay Johnson Date: Wed, 8 Jan 2025 13:16:45 -0600 Subject: [PATCH 1/3] Publish build scans to develocity.apache.org --- settings.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.gradle b/settings.gradle index d854ccacf..0ececf5e9 100644 --- a/settings.gradle +++ b/settings.gradle @@ -8,7 +8,7 @@ def isJenkins = System.getenv('JENKINS_URL') != null def isCI = isTravisCI || isJenkins develocity { - server = "https://ge.apache.org" + server = "https://develocity.apache.org" projectId = "tapestry" buildScan { uploadInBackground = !isCI From ba0931e362054b9b0b78a63200cf0a3f6526419b Mon Sep 17 00:00:00 2001 From: Clay Johnson Date: Wed, 8 Jan 2025 13:19:00 -0600 Subject: [PATCH 2/3] Use `DEVELOCITY_ACCESS_KEY` to authenticate to `develocity.apache.org` --- .github/workflows/build-pull-request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-pull-request.yaml b/.github/workflows/build-pull-request.yaml index 3fd92caeb..14152f55d 100644 --- a/.github/workflows/build-pull-request.yaml +++ b/.github/workflows/build-pull-request.yaml @@ -3,7 +3,7 @@ on: pull_request env: MOZ_HEADLESS: true - DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }} + DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} jobs: build: From 63ae921b1f91588f4028340fda2fdcf2c8e8f6fa Mon Sep 17 00:00:00 2001 From: Clay Johnson Date: Wed, 8 Jan 2025 13:20:00 -0600 Subject: [PATCH 3/3] Update Develocity plugin versions --- settings.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.gradle b/settings.gradle index 0ececf5e9..f7400a150 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,5 +1,5 @@ plugins { - id 'com.gradle.develocity' version '3.17.6' + id 'com.gradle.develocity' version '3.18.2' id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.0.2' }