From 296b884befbcb65d69ab2053fe769faf4e19e041 Mon Sep 17 00:00:00 2001 From: Tibor Blenessy Date: Mon, 27 Apr 2026 16:55:16 +0200 Subject: [PATCH 1/2] Add repox credentials to macOS Analyzers Build job --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 68a96c93..f5a3fbb9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,6 +39,7 @@ jobs: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y source $HOME/.cargo/env rustup target add x86_64-apple-darwin + - uses: SonarSource/ci-github-actions/config-gradle@v1 - name: Build Rust analyzers run: | echo "org.gradle.daemon=false" >> "gradle.properties" From 73aa1893ea0a60088a10c0c4134973c20ec4a4ba Mon Sep 17 00:00:00 2001 From: Tibor Blenessy Date: Mon, 27 Apr 2026 17:32:41 +0200 Subject: [PATCH 2/2] Allow macOS Analyzers Build to run on manual workflow_dispatch --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f5a3fbb9..a0447743 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,7 +22,7 @@ jobs: macos_analyzers: runs-on: macos-latest name: macOS Analyzers Build - if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/branch-') || startsWith(github.ref, 'refs/heads/dogfood-') + if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/branch-') || startsWith(github.ref, 'refs/heads/dogfood-') || github.event_name == 'workflow_dispatch' permissions: id-token: write steps: