Skip to content

Commit

Permalink
Revert "Publish build scans to develocity.apache.org (#14140)"
Browse files Browse the repository at this point in the history
This reverts commit dbdb030.
dweiss committed Jan 15, 2025
1 parent dbdb030 commit be37cba
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-checks-all.yml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ on:
- 'branch_10x'

env:
DEVELOCITY_ACCESS_KEY: ${{ DEVELOCITY_ACCESS_KEY }}
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}

# We split the workflow into two parallel jobs for efficiency:
# one is running all validation checks without tests,
2 changes: 1 addition & 1 deletion .github/workflows/run-checks-gradle-upgrade.yml
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ on:
- 'gradle/wrapper/**'

env:
DEVELOCITY_ACCESS_KEY: ${{ DEVELOCITY_ACCESS_KEY }}
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}

jobs:
gradleSanityCheck:
2 changes: 1 addition & 1 deletion .github/workflows/run-checks-mod-analysis-common.yml
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ on:
- 'lucene/analysis/common/**'

env:
DEVELOCITY_ACCESS_KEY: ${{ DEVELOCITY_ACCESS_KEY }}
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}

jobs:
test:
2 changes: 1 addition & 1 deletion .github/workflows/run-checks-mod-distribution.tests.yml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ on:
- 'branch_10x'

env:
DEVELOCITY_ACCESS_KEY: ${{ DEVELOCITY_ACCESS_KEY }}
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}

jobs:
test:
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ Apache Lucene is a high-performance, full-featured text search engine library
written in Java.

[![Build Status](https://ci-builds.apache.org/job/Lucene/job/Lucene-Artifacts-main/badge/icon?subject=Lucene)](https://ci-builds.apache.org/job/Lucene/job/Lucene-Artifacts-main/)
[![Revved up by Develocity](https://img.shields.io/badge/Revved%20up%20by-Develocity-06A0CE?logo=Gradle&labelColor=02303A)](https://develocity.apache.org/scans?search.buildToolType=gradle&search.rootProjectNames=lucene-root)
[![Revved up by Develocity](https://img.shields.io/badge/Revved%20up%20by-Develocity-06A0CE?logo=Gradle&labelColor=02303A)](https://ge.apache.org/scans?search.buildToolType=gradle&search.rootProjectNames=lucene-root)

## Online Documentation

12 changes: 6 additions & 6 deletions gradle/ge.gradle
Original file line number Diff line number Diff line change
@@ -17,13 +17,13 @@

def isCIBuild = System.getenv().keySet().find { it ==~ /(?i)((JENKINS|HUDSON)(_\w+)?|CI)/ } != null

develocity {
server = "https://develocity.apache.org"
projectId = "lucene"

gradleEnterprise {
server = "https://ge.apache.org"
buildScan {
capture { taskInputFiles = true }
uploadInBackground = !isCIBuild
publishing.onlyIf { it.isAuthenticated() }
publishAlways()
publishIfAuthenticated()
obfuscation {
ipAddresses { addresses -> addresses.collect { address -> "0.0.0.0"} }
}
@@ -35,7 +35,7 @@ buildCache {
enabled = !isCIBuild
}

remote(develocity.buildCache) {
remote(gradleEnterprise.buildCache) {
enabled = false
}
}
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -26,8 +26,8 @@ pluginManagement {

plugins {
id "org.gradle.toolchains.foojay-resolver-convention" version "0.8.0"
id 'com.gradle.develocity' version '3.18.2'
id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.0.2'
id 'com.gradle.enterprise' version '3.15.1'
id 'com.gradle.common-custom-user-data-gradle-plugin' version '1.11.3'
}

dependencyResolutionManagement {

0 comments on commit be37cba

Please sign in to comment.