Revert "Publish a build scan only when authenticated"

publishIfAuthenticated() does not appear to work as intended as it
disables publishing even when authenticated.
This commit is contained in:
Andy Wilkinson 2020-01-15 20:31:52 +00:00
parent 8d6ead223f
commit ce7f501cf9
4 changed files with 5 additions and 2 deletions

View File

@ -9,5 +9,6 @@ caches:
- path: gradle
params:
CI: true
GRADLE_ENTERPRISE_URL: https://ge.spring.io
run:
path: git-repo/ci/scripts/build-project.sh

View File

@ -7,5 +7,6 @@ params:
GRADLE_ENTERPRISE_ACCESS_KEY:
GRADLE_ENTERPRISE_CACHE_USERNAME:
GRADLE_ENTERPRISE_CACHE_PASSWORD:
GRADLE_ENTERPRISE_URL: https://ge.spring.io
run:
path: git-repo/ci/scripts/build-project-windows.bat

View File

@ -13,6 +13,7 @@ params:
GRADLE_ENTERPRISE_ACCESS_KEY:
GRADLE_ENTERPRISE_CACHE_USERNAME:
GRADLE_ENTERPRISE_CACHE_PASSWORD:
GRADLE_ENTERPRISE_URL: https://ge.spring.io
run:
path: bash
args:

View File

@ -17,7 +17,7 @@ pluginManagement {
}
plugins {
id 'com.gradle.enterprise' version '3.1.1'
id 'com.gradle.enterprise' version '3.1'
}
apply from: "$rootDir/gradle/build-scan-user-data.gradle"
@ -27,7 +27,7 @@ gradleEnterprise {
obfuscation {
ipAddresses { addresses -> addresses.collect { address -> '0.0.0.0'} }
}
publishIfAuthenticated()
publishAlwaysIf(System.getenv('GRADLE_ENTERPRISE_URL') != null)
server = 'https://ge.spring.io'
}
}