Skip to content

Commit

Permalink
Publish Gradle build scans from CI (#1481)
Browse files Browse the repository at this point in the history
Co-authored-by: Róbert Papp <papp.robert.s@gmail.com>
  • Loading branch information
jrodbx and TWiStErRob authored Jun 17, 2024
1 parent fd6301c commit e150f38
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
plugins {
id 'com.gradle.develocity' version '3.17.5'
}

develocity {
buildScan {
termsOfUseUrl = 'https://gradle.com/help/legal-terms-of-use'
if (System.getenv('CI') == 'true') {
termsOfUseAgree = 'yes'
tag 'CI'
} else {
publishing.onlyIf { false }
}
}
}

rootProject.name = 'paparazzi-root'

include ':paparazzi'
Expand Down

0 comments on commit e150f38

Please sign in to comment.