This is an automated email from the ASF dual-hosted git repository.
exceptionfactory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new cedfcba396 NIFI-15125 Enabled Develocity Remote Build Cache (#10448)
cedfcba396 is described below
commit cedfcba3964ab2c31147a5556e5e189dd8569429
Author: Clay Johnson <[email protected]>
AuthorDate: Wed Oct 22 14:48:50 2025 -0500
NIFI-15125 Enabled Develocity Remote Build Cache (#10448)
Signed-off-by: David Handermann <[email protected]>
---
.github/workflows/ci-workflow.yml | 2 +-
.github/workflows/code-compliance.yml | 2 +-
.github/workflows/code-coverage.yml | 2 +-
.github/workflows/docker-tests.yml | 2 +-
.github/workflows/integration-tests.yml | 2 +-
.github/workflows/system-tests.yml | 2 +-
.mvn/develocity.xml | 3 ++-
7 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/ci-workflow.yml
b/.github/workflows/ci-workflow.yml
index ef111c6c6b..fd9ca71ec4 100644
--- a/.github/workflows/ci-workflow.yml
+++ b/.github/workflows/ci-workflow.yml
@@ -45,7 +45,7 @@ env:
--fail-fast
--threads 1C
-D dir-only
- DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
+ DEVELOCITY_ACCESS_KEY: ${{ secrets.NIFI_DEVELOCITY_ACCESS_KEY }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
diff --git a/.github/workflows/code-compliance.yml
b/.github/workflows/code-compliance.yml
index 963df4b4b4..be69b0af41 100644
--- a/.github/workflows/code-compliance.yml
+++ b/.github/workflows/code-compliance.yml
@@ -36,7 +36,7 @@ env:
-Xms6g
-Xmx6g
-Dorg.slf4j.simpleLogger.defaultLogLevel=WARN
- DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
+ DEVELOCITY_ACCESS_KEY: ${{ secrets.NIFI_DEVELOCITY_ACCESS_KEY }}
jobs:
validate:
diff --git a/.github/workflows/code-coverage.yml
b/.github/workflows/code-coverage.yml
index 932c4b2562..7a90dcfedd 100644
--- a/.github/workflows/code-coverage.yml
+++ b/.github/workflows/code-coverage.yml
@@ -28,7 +28,7 @@ env:
-Xms6g
-Xmx6g
-Dorg.slf4j.simpleLogger.defaultLogLevel=WARN
- DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
+ DEVELOCITY_ACCESS_KEY: ${{ secrets.NIFI_DEVELOCITY_ACCESS_KEY }}
permissions:
contents: read
diff --git a/.github/workflows/docker-tests.yml
b/.github/workflows/docker-tests.yml
index f4400aa142..ad3bf39053 100644
--- a/.github/workflows/docker-tests.yml
+++ b/.github/workflows/docker-tests.yml
@@ -91,7 +91,7 @@ env:
-pl nifi-docker/dockermaven
-pl nifi-registry/nifi-registry-docker-maven/dockermaven
- DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
+ DEVELOCITY_ACCESS_KEY: ${{ secrets.NIFI_DEVELOCITY_ACCESS_KEY }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
diff --git a/.github/workflows/integration-tests.yml
b/.github/workflows/integration-tests.yml
index 2c4efc8484..15bc034c37 100644
--- a/.github/workflows/integration-tests.yml
+++ b/.github/workflows/integration-tests.yml
@@ -82,7 +82,7 @@ env:
-pl -:nifi-processor-bundle-archetype
-pl -:nifi-service-bundle-archetype
- DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
+ DEVELOCITY_ACCESS_KEY: ${{ secrets.NIFI_DEVELOCITY_ACCESS_KEY }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
diff --git a/.github/workflows/system-tests.yml
b/.github/workflows/system-tests.yml
index 2e38950144..3c44785202 100644
--- a/.github/workflows/system-tests.yml
+++ b/.github/workflows/system-tests.yml
@@ -68,7 +68,7 @@ env:
-pl :nifi-py4j-integration-tests
-pl nifi-system-tests/nifi-system-test-suite
-pl nifi-system-tests/nifi-stateless-system-test-suite
- DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
+ DEVELOCITY_ACCESS_KEY: ${{ secrets.NIFI_DEVELOCITY_ACCESS_KEY }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
diff --git a/.mvn/develocity.xml b/.mvn/develocity.xml
index 8e73aa0558..f320f96953 100644
--- a/.mvn/develocity.xml
+++ b/.mvn/develocity.xml
@@ -40,7 +40,8 @@
<enabled>#{isFalse(env['GITHUB_ACTIONS'])}</enabled>
</local>
<remote>
- <enabled>false</enabled>
+ <enabled>true</enabled>
+ <storeEnabled>#{isTrue(env['GITHUB_ACTIONS']) and
isTrue(env['DEVELOCITY_ACCESS_KEY'])}</storeEnabled>
</remote>
</buildCache>
</develocity>