From 9ef977e56399025c334e7fe49e329bbe6993c429 Mon Sep 17 00:00:00 2001 From: Gasper Kojek Date: Wed, 25 Mar 2026 14:00:16 +0100 Subject: [PATCH 1/3] Add GRADLE_ENTERPRISE_ACCESS_KEY for Samza GE 3.13.1 compatibility Samza uses the older com.gradle.enterprise plugin (3.13.1) which reads GRADLE_ENTERPRISE_ACCESS_KEY, not DEVELOCITY_ACCESS_KEY. Without the correct env var, the plugin cannot authenticate with the Develocity server, causing all experiments to fail with "No Build Scan was published" (exit 100). --- .github/workflows/run-experiments-apache-samza.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/run-experiments-apache-samza.yml b/.github/workflows/run-experiments-apache-samza.yml index e3401559..df211067 100644 --- a/.github/workflows/run-experiments-apache-samza.yml +++ b/.github/workflows/run-experiments-apache-samza.yml @@ -42,6 +42,7 @@ jobs: uses: gradle/develocity-build-validation-scripts/.github/actions/gradle/experiment-1@actions-stable env: DEVELOCITY_ACCESS_KEY: "${{ secrets.DV_SOLUTIONS_ACCESS_KEY }}" + GRADLE_ENTERPRISE_ACCESS_KEY: "${{ secrets.DV_SOLUTIONS_ACCESS_KEY }}" with: gitRepo: ${{ env.GIT_REPO }} tasks: ${{ env.TASKS }} @@ -51,6 +52,7 @@ jobs: uses: gradle/develocity-build-validation-scripts/.github/actions/gradle/experiment-2@actions-stable env: DEVELOCITY_ACCESS_KEY: "${{ secrets.DV_SOLUTIONS_ACCESS_KEY }}" + GRADLE_ENTERPRISE_ACCESS_KEY: "${{ secrets.DV_SOLUTIONS_ACCESS_KEY }}" with: gitRepo: ${{ env.GIT_REPO }} tasks: ${{ env.TASKS }} @@ -61,6 +63,7 @@ jobs: uses: gradle/develocity-build-validation-scripts/.github/actions/gradle/experiment-3@actions-stable env: DEVELOCITY_ACCESS_KEY: "${{ secrets.DV_SOLUTIONS_ACCESS_KEY }}" + GRADLE_ENTERPRISE_ACCESS_KEY: "${{ secrets.DV_SOLUTIONS_ACCESS_KEY }}" with: gitRepo: ${{ env.GIT_REPO }} tasks: ${{ env.TASKS }} From 90a47ea93538d3e80952a60c20e020a3f7fb7c35 Mon Sep 17 00:00:00 2001 From: Gasper Kojek Date: Wed, 25 Mar 2026 14:27:45 +0100 Subject: [PATCH 2/3] Re-enable scheduled execution for Apache Samza experiments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The build is working again — the JCenter dependency issue referenced in apache/samza#1703 appears to have been resolved. --- .github/workflows/run-experiments-apache-samza.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-experiments-apache-samza.yml b/.github/workflows/run-experiments-apache-samza.yml index df211067..40b2d887 100644 --- a/.github/workflows/run-experiments-apache-samza.yml +++ b/.github/workflows/run-experiments-apache-samza.yml @@ -4,7 +4,8 @@ on: push: paths: - '.github/workflows/run-experiments-apache-samza.yml' - # Scheduled execution disabled while build is broken - see https://github.com/apache/samza/pull/1703 + schedule: + - cron: "0 22 * * 4" workflow_dispatch: permissions: From d3231b7f443c01c7bc85cc446c1d1bb1977f78ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C5=A1per=20Kojek?= Date: Thu, 26 Mar 2026 13:13:46 +0100 Subject: [PATCH 3/3] Disable schedule execution in workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed scheduled execution for the workflow and updated comments regarding setup. Signed-off-by: Gašper Kojek --- .github/workflows/run-experiments-apache-samza.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/run-experiments-apache-samza.yml b/.github/workflows/run-experiments-apache-samza.yml index 40b2d887..837f6984 100644 --- a/.github/workflows/run-experiments-apache-samza.yml +++ b/.github/workflows/run-experiments-apache-samza.yml @@ -4,8 +4,7 @@ on: push: paths: - '.github/workflows/run-experiments-apache-samza.yml' - schedule: - - cron: "0 22 * * 4" + # Schedule execution disabled while their setup is not updated and pushing scans. See https://github.com/apache/samza/pull/1718 workflow_dispatch: permissions: @@ -43,7 +42,6 @@ jobs: uses: gradle/develocity-build-validation-scripts/.github/actions/gradle/experiment-1@actions-stable env: DEVELOCITY_ACCESS_KEY: "${{ secrets.DV_SOLUTIONS_ACCESS_KEY }}" - GRADLE_ENTERPRISE_ACCESS_KEY: "${{ secrets.DV_SOLUTIONS_ACCESS_KEY }}" with: gitRepo: ${{ env.GIT_REPO }} tasks: ${{ env.TASKS }} @@ -53,7 +51,6 @@ jobs: uses: gradle/develocity-build-validation-scripts/.github/actions/gradle/experiment-2@actions-stable env: DEVELOCITY_ACCESS_KEY: "${{ secrets.DV_SOLUTIONS_ACCESS_KEY }}" - GRADLE_ENTERPRISE_ACCESS_KEY: "${{ secrets.DV_SOLUTIONS_ACCESS_KEY }}" with: gitRepo: ${{ env.GIT_REPO }} tasks: ${{ env.TASKS }} @@ -64,7 +61,6 @@ jobs: uses: gradle/develocity-build-validation-scripts/.github/actions/gradle/experiment-3@actions-stable env: DEVELOCITY_ACCESS_KEY: "${{ secrets.DV_SOLUTIONS_ACCESS_KEY }}" - GRADLE_ENTERPRISE_ACCESS_KEY: "${{ secrets.DV_SOLUTIONS_ACCESS_KEY }}" with: gitRepo: ${{ env.GIT_REPO }} tasks: ${{ env.TASKS }}