diff --git a/.github/workflows/bin-solr-test.yml b/.github/workflows/bin-solr-test.yml index 126e8d62293..ddbfa2773a5 100644 --- a/.github/workflows/bin-solr-test.yml +++ b/.github/workflows/bin-solr-test.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest env: - DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }} + DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} steps: # Setup diff --git a/.github/workflows/docker-test.yml b/.github/workflows/docker-test.yml index d8593613ca6..84c2639d1e5 100644 --- a/.github/workflows/docker-test.yml +++ b/.github/workflows/docker-test.yml @@ -21,7 +21,7 @@ jobs: env: SOLR_DOCKER_IMAGE_REPO: github-pr/solr SOLR_DOCKER_IMAGE_TAG: ${{github.event.number}} - DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }} + DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} steps: # Setup diff --git a/.github/workflows/gradle-precommit.yml b/.github/workflows/gradle-precommit.yml index 67c1506ad0a..66f0807be47 100644 --- a/.github/workflows/gradle-precommit.yml +++ b/.github/workflows/gradle-precommit.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest env: - DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }} + DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} steps: # Setup diff --git a/.github/workflows/solrj-test.yml b/.github/workflows/solrj-test.yml index 3eb9bb4f5f6..1de882e6a2b 100644 --- a/.github/workflows/solrj-test.yml +++ b/.github/workflows/solrj-test.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest env: - DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }} + DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} steps: # Setup diff --git a/dev-docs/FAQ.adoc b/dev-docs/FAQ.adoc index 820e952b5f3..23621db8e5c 100644 --- a/dev-docs/FAQ.adoc +++ b/dev-docs/FAQ.adoc @@ -95,7 +95,7 @@ If you don't yet have an account, you have to ask for one in the 'users' or 'dev === Where can I find information about test history? * http://fucit.org/solr-jenkins-reports/failure-report.html -* https://ge.apache.org/scans/tests?search.relativeStartTime=P90D&search.rootProjectNames=solr* +* https://develocity.apache.org/scans/tests?search.relativeStartTime=P90D&search.rootProjectNames=solr* * https://lists.apache.org[Solr mailing list archives especially builds] === How can I build the JavaDoc's and the Reference Guide? diff --git a/gradle/develocity.gradle b/gradle/develocity.gradle index 09aabbf3a0e..acfeabafa4f 100644 --- a/gradle/develocity.gradle +++ b/gradle/develocity.gradle @@ -21,7 +21,7 @@ def isCIBuild = System.getenv().keySet().any { it ==~ /(?i)((JENKINS|HUDSON)(_\w // https://docs.gradle.com/enterprise/gradle-plugin/ develocity { - server = "https://ge.apache.org" + server = "https://develocity.apache.org" projectId = "solr" buildScan { diff --git a/gradle/testing/failed-tests-at-end.gradle b/gradle/testing/failed-tests-at-end.gradle index 5b3381751d4..2a42bac5795 100644 --- a/gradle/testing/failed-tests-at-end.gradle +++ b/gradle/testing/failed-tests-at-end.gradle @@ -22,7 +22,7 @@ def failedTests = new LinkedHashSet() // for dedupe due to weird afterTest class def genFailInfo(def task, TestDescriptor desc) { boolean isSuite = (desc.name == 'classMethod') def name = isSuite ? desc.className : "${desc.className}.${desc.name}" - def historyUrl = "https://ge.apache.org/scans/tests?search.rootProjectNames=solr-root&tests.container=$desc.className" + def historyUrl = "https://develocity.apache.org/scans/tests?search.rootProjectNames=solr-root&tests.container=$desc.className" if (!isSuite) { // is test method specific historyUrl += "&tests.test=$desc.name" historyUrl += " http://fucit.org/solr-jenkins-reports/history-trend-of-recent-failures.html#series/$name" diff --git a/settings.gradle b/settings.gradle index 1cd64f9a04a..2adc1c6bad1 100644 --- a/settings.gradle +++ b/settings.gradle @@ -25,7 +25,7 @@ pluginManagement { } plugins { - id 'com.gradle.develocity' version '3.18.1' + id 'com.gradle.develocity' version '3.18.2' id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.0.2' }