From 262e5fa96c1034c8965a8603d37c2fafed018b00 Mon Sep 17 00:00:00 2001 From: Tyler Bertrand Date: Sun, 14 Sep 2025 12:11:52 -0500 Subject: [PATCH] Benefit from enhanced build insights and troubleshooting ability by publishing Build Scans to https://develocity.apache.org --- .github/workflows/codeql-analysis-java.yml | 3 ++ .github/workflows/unomi-ci-build-tests.yml | 3 ++ .github/workflows/unomi-ci-docs-deploy.yml | 3 ++ .gitignore | 3 +- .mvn/develocity.xml | 44 ++++++++++++++++++++++ .mvn/extensions.xml | 33 ++++++++++++++++ 6 files changed, 88 insertions(+), 1 deletion(-) create mode 100644 .mvn/develocity.xml create mode 100644 .mvn/extensions.xml diff --git a/.github/workflows/codeql-analysis-java.yml b/.github/workflows/codeql-analysis-java.yml index 5fd21511cc..0b8b7c4278 100644 --- a/.github/workflows/codeql-analysis-java.yml +++ b/.github/workflows/codeql-analysis-java.yml @@ -20,6 +20,9 @@ on: schedule: - cron: '38 1 * * 0' +env: + DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} + jobs: analyze: name: Analyze diff --git a/.github/workflows/unomi-ci-build-tests.yml b/.github/workflows/unomi-ci-build-tests.yml index 094996121d..16e0067d58 100644 --- a/.github/workflows/unomi-ci-build-tests.yml +++ b/.github/workflows/unomi-ci-build-tests.yml @@ -9,6 +9,9 @@ on: pull_request: types: [opened, reopened, synchronize] +env: + DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} + jobs: unit-tests: name: Execute unit tests diff --git a/.github/workflows/unomi-ci-docs-deploy.yml b/.github/workflows/unomi-ci-docs-deploy.yml index 9ca17b060b..7fcaed01cd 100644 --- a/.github/workflows/unomi-ci-docs-deploy.yml +++ b/.github/workflows/unomi-ci-docs-deploy.yml @@ -7,6 +7,9 @@ on: push: branches: [master] +env: + DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} + jobs: publish-docs-and-snapshots: name: Publish Javadoc and snapshots diff --git a/.gitignore b/.gitignore index 1d2e17afa0..8e101f0015 100644 --- a/.gitignore +++ b/.gitignore @@ -15,4 +15,5 @@ allCountries.zip rest/.miredot-offline.json /extensions/salesforce-connector/test.properties **/*.versionsBackup -itests/src/main \ No newline at end of file +itests/src/main +.mvn/.develocity/develocity-workspace-id \ No newline at end of file diff --git a/.mvn/develocity.xml b/.mvn/develocity.xml new file mode 100644 index 0000000000..d8d4e709b6 --- /dev/null +++ b/.mvn/develocity.xml @@ -0,0 +1,44 @@ + + + + unomi + + https://develocity.apache.org + + + #{isFalse(env['GITHUB_ACTIONS'])} + + + + + #{{'0.0.0.0'}} + + + + + false + + + false + + + \ No newline at end of file diff --git a/.mvn/extensions.xml b/.mvn/extensions.xml new file mode 100644 index 0000000000..d0eb2b6228 --- /dev/null +++ b/.mvn/extensions.xml @@ -0,0 +1,33 @@ + + + + + com.gradle + develocity-maven-extension + 2.1 + + + com.gradle + common-custom-user-data-maven-extension + 2.0.6 + + \ No newline at end of file