Skip to content

Commit

Permalink
Remove gradle scan publishing from CI (open-telemetry#4689)
Browse files Browse the repository at this point in the history
* Remove gradle scan publishing from CI

* Remove doc too
  • Loading branch information
trask authored and RashmiRam committed May 23, 2022
1 parent 454f408 commit 193b109
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 24 deletions.
13 changes: 0 additions & 13 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,16 +65,3 @@ See [Debugging](docs/contributing/debugging.md)
### Understanding Muzzle

See [Understanding Muzzle](docs/contributing/muzzle.md)

### Troubleshooting PR build failures

The build logs are very long and there is a lot of parallelization, so the logs can be hard to
decipher, but if you scroll to the bottom you should see something like:

```
Publishing build scan...
https://gradle.com/s/ila4qwp5lcf5s
```

Opening the build scan link can sometimes take several seconds (it's a large build), but it
typically makes it a lot clearer what's failing.
12 changes: 1 addition & 11 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,9 @@ dependencyResolutionManagement {

val gradleEnterpriseServer = "https://ge.opentelemetry.io"
val isCI = System.getenv("CI") != null
val geAccessKey = System.getenv("GRADLE_ENTERPRISE_ACCESS_KEY") ?: ""

// if GE access key is not given and we are in CI, then we publish to scans.gradle.com
gradleEnterprise {
if (geAccessKey.isNotEmpty()) {
server = gradleEnterpriseServer
}
server = gradleEnterpriseServer
buildScan {
// TODO remove this until legal approves
if (geAccessKey.isEmpty() && isCI) {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
publishAlways()
this as com.gradle.enterprise.gradleplugin.internal.extension.BuildScanExtensionWithHiddenFeatures
publishIfAuthenticated()
Expand Down

0 comments on commit 193b109

Please sign in to comment.