Skip to content

Commit

Permalink
Enable develocity for all Gradle builds
Browse files Browse the repository at this point in the history
  • Loading branch information
ascheman committed Dec 14, 2024
1 parent 20f67b5 commit 23f9734
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion generate-pages
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ run copyPdf cp -rp build/pdf build/microsite/output
run copyStandalone cp -rp build/html5/images build/microsite/output \
&& mkdir -p build/microsite/output/single-page/ \
&& cp -p build/html5/arc42/hsc_arc42.html build/microsite/output/single-page/hsc_arc42-single-page.html
run htmlSanityCheck "(cd self-check && ../gradlew htmlSanityCheck --refresh-dependencies --scan)"
run htmlSanityCheck "(cd self-check && ../gradlew htmlSanityCheck --scan --refresh-dependencies --scan)"
run copyCheckResult cp -rp build/reports/htmlchecks build/microsite/output
run fixDocLinks "sed -i .bak \
-e 's, href=\"${PWD}/build/microsite/output/, href=\"../,g' \
Expand Down
14 changes: 14 additions & 0 deletions integration-test/common/settings.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
plugins {
// to report build results back to gradle.org
id 'com.gradle.develocity' version '3.17.6'
}

develocity {
buildScan {
termsOfUseUrl = 'https://gradle.com/terms-of-service'
termsOfUseAgree = 'yes'

publishing.onlyIf { System.getenv("GRADLE_BUILD_SCAN") == 'true' }
}
}

rootProject.name = 'hsc-integration-test-common'

/*
Expand Down
14 changes: 14 additions & 0 deletions integration-test/settings.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
plugins {
// to report build results back to gradle.org
id 'com.gradle.develocity' version '3.17.6'
}

develocity {
buildScan {
termsOfUseUrl = 'https://gradle.com/terms-of-service'
termsOfUseAgree = 'yes'

publishing.onlyIf { System.getenv("GRADLE_BUILD_SCAN") == 'true' }
}
}

rootProject.name = 'hsc-integration-test'

/*
Expand Down

0 comments on commit 23f9734

Please sign in to comment.