This is an automated email from the ASF dual-hosted git repository. szetszwo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/ratis.git
commit 44874c19edeaa09818b35ff568300ae8d21d35ca Author: Doroszlai, Attila <[email protected]> AuthorDate: Fri Jan 17 07:52:55 2025 +0100 RATIS-2239. Publish build scans to develocity.apache.org (#1212) --- .github/workflows/check.yml | 1 + .mvn/develocity.xml | 17 +++++++++++++---- .mvn/extensions.xml | 2 +- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index b4498927a..78a4be2ad 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -156,6 +156,7 @@ jobs: run: | dev-support/checks/${{ inputs.script }}.sh ${{ inputs.script-args }} env: + DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} WITH_COVERAGE: ${{ inputs.with-coverage }} - name: Summary of failures diff --git a/.mvn/develocity.xml b/.mvn/develocity.xml index 1fa63e6f2..3bef39594 100644 --- a/.mvn/develocity.xml +++ b/.mvn/develocity.xml @@ -22,16 +22,25 @@ <develocity xmlns="https://www.gradle.com/develocity-maven" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://www.gradle.com/develocity-maven https://www.gradle.com/schema/develocity-maven.xsd"> + <projectId>ratis</projectId> + <server> + <url>https://develocity.apache.org</url> + <allowUntrusted>false</allowUntrusted> + </server> <buildScan> <capture> - <fileFingerprints>false</fileFingerprints> - <buildLogging>false</buildLogging> - <testLogging>false</testLogging> + <fileFingerprints>true</fileFingerprints> + <buildLogging>true</buildLogging> + <testLogging>true</testLogging> <resourceUsage>false</resourceUsage> </capture> + <backgroundBuildScanUpload>#{isFalse(env['GITHUB_ACTIONS'])}</backgroundBuildScanUpload> <publishing> - <onlyIf>false</onlyIf> + <onlyIf><![CDATA[authenticated]]></onlyIf> </publishing> + <obfuscation> + <ipAddresses>#{{'0.0.0.0'}}</ipAddresses> + </obfuscation> </buildScan> <buildCache> <local> diff --git a/.mvn/extensions.xml b/.mvn/extensions.xml index 549a1cddc..8ceede33b 100644 --- a/.mvn/extensions.xml +++ b/.mvn/extensions.xml @@ -24,7 +24,7 @@ <extension> <groupId>com.gradle</groupId> <artifactId>develocity-maven-extension</artifactId> - <version>1.23</version> + <version>1.22.2</version> </extension> <extension> <groupId>com.gradle</groupId>
