This is an automated email from the ASF dual-hosted git repository.
dsmiley pushed a commit to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/branch_9x by this push:
new 50b728e78b4 Build: Publish build scans to develocity.apache.org (#3035)
50b728e78b4 is described below
commit 50b728e78b41e0c1f3bacf4451b1f225164180dd
Author: Clay Johnson <[email protected]>
AuthorDate: Fri Jan 17 23:02:59 2025 -0600
Build: Publish build scans to develocity.apache.org (#3035)
* Publish build scans to develocity.apache.org
* Update Develocity plugin versions
* Use `DEVELOCITY_ACCESS_KEY` to authenticate to `develocity.apache.org`
(cherry picked from commit af5fea7cf0f57799d5da528f80a55b91f6783c80)
---
.github/workflows/bin-solr-test.yml | 2 +-
.github/workflows/docker-test.yml | 2 +-
.github/workflows/gradle-precommit.yml | 2 +-
.github/workflows/solrj-test.yml | 2 +-
dev-docs/FAQ.adoc | 2 +-
gradle/develocity.gradle | 2 +-
gradle/testing/failed-tests-at-end.gradle | 2 +-
settings.gradle | 2 +-
8 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/.github/workflows/bin-solr-test.yml
b/.github/workflows/bin-solr-test.yml
index 3f0628486f0..dc9c27f5850 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 b89986b2c3b..ffa54e8afe4 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 36ec87f78e9..be11d353e17 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 4cd5e0856e2..de578e930a1 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 248b07d37f3..30bbcc52507 100644
--- a/dev-docs/FAQ.adoc
+++ b/dev-docs/FAQ.adoc
@@ -90,7 +90,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 5bffe9c9926..aebb615b9ac 100644
--- a/gradle/testing/failed-tests-at-end.gradle
+++ b/gradle/testing/failed-tests-at-end.gradle
@@ -24,7 +24,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 2f1d1098146..293b9d450bd 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -23,7 +23,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'
}