Skip to content

Commit af5fea7

Browse files
authored
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`
1 parent 5412394 commit af5fea7

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/bin-solr-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
env:
22-
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
22+
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
2323

2424
steps:
2525
# Setup

.github/workflows/docker-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
env:
2222
SOLR_DOCKER_IMAGE_REPO: github-pr/solr
2323
SOLR_DOCKER_IMAGE_TAG: ${{github.event.number}}
24-
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
24+
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
2525

2626
steps:
2727
# Setup

.github/workflows/gradle-precommit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
env:
16-
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
16+
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
1717

1818
steps:
1919
# Setup

.github/workflows/solrj-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
env:
19-
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
19+
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
2020

2121
steps:
2222
# Setup

dev-docs/FAQ.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ If you don't yet have an account, you have to ask for one in the 'users' or 'dev
9595
=== Where can I find information about test history?
9696

9797
* http://fucit.org/solr-jenkins-reports/failure-report.html
98-
* https://ge.apache.org/scans/tests?search.relativeStartTime=P90D&search.rootProjectNames=solr*
98+
* https://develocity.apache.org/scans/tests?search.relativeStartTime=P90D&search.rootProjectNames=solr*
9999
* https://lists.apache.org[Solr mailing list archives especially builds]
100100

101101
=== How can I build the JavaDoc's and the Reference Guide?

gradle/develocity.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def isCIBuild = System.getenv().keySet().any { it ==~ /(?i)((JENKINS|HUDSON)(_\w
2121
// https://docs.gradle.com/enterprise/gradle-plugin/
2222

2323
develocity {
24-
server = "https://ge.apache.org"
24+
server = "https://develocity.apache.org"
2525
projectId = "solr"
2626

2727
buildScan {

gradle/testing/failed-tests-at-end.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def failedTests = new LinkedHashSet() // for dedupe due to weird afterTest class
2222
def genFailInfo(def task, TestDescriptor desc) {
2323
boolean isSuite = (desc.name == 'classMethod')
2424
def name = isSuite ? desc.className : "${desc.className}.${desc.name}"
25-
def historyUrl = "https://ge.apache.org/scans/tests?search.rootProjectNames=solr-root&tests.container=$desc.className"
25+
def historyUrl = "https://develocity.apache.org/scans/tests?search.rootProjectNames=solr-root&tests.container=$desc.className"
2626
if (!isSuite) { // is test method specific
2727
historyUrl += "&tests.test=$desc.name"
2828
historyUrl += " http://fucit.org/solr-jenkins-reports/history-trend-of-recent-failures.html#series/$name"

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pluginManagement {
2525
}
2626

2727
plugins {
28-
id 'com.gradle.develocity' version '3.18.1'
28+
id 'com.gradle.develocity' version '3.18.2'
2929
id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.0.2'
3030
}
3131

0 commit comments

Comments
 (0)