From fa6d4085513b67aa3af63cfd38e7427a316e9375 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Sat, 6 Sep 2025 16:48:40 +0200 Subject: [PATCH 1/2] tools: remove unused actions from `build-tarball.yml` --- .github/workflows/build-tarball.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/build-tarball.yml b/.github/workflows/build-tarball.yml index aadf4bb8213055..8682a2515c8930 100644 --- a/.github/workflows/build-tarball.yml +++ b/.github/workflows/build-tarball.yml @@ -46,18 +46,10 @@ jobs: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: persist-credentials: false - - name: Install Clang ${{ env.CLANG_VERSION }} - uses: ./.github/actions/install-clang - with: - clang-version: ${{ env.CLANG_VERSION }} - name: Set up Python ${{ env.PYTHON_VERSION }} uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 with: python-version: ${{ env.PYTHON_VERSION }} - - name: Set up sccache - uses: Mozilla-Actions/sccache-action@7d986dd989559c6ecdb630a3fd2557667be217ad # v0.0.9 - with: - version: v0.10.0 - name: Environment Information run: npx envinfo - name: Make tarball From 3537ef19b4e8b25f934e3512894569738f30a340 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Sat, 6 Sep 2025 16:54:44 +0200 Subject: [PATCH 2/2] fixup! tools: remove unused actions from `build-tarball.yml` --- .github/workflows/build-tarball.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-tarball.yml b/.github/workflows/build-tarball.yml index 8682a2515c8930..1e4c86c87af05c 100644 --- a/.github/workflows/build-tarball.yml +++ b/.github/workflows/build-tarball.yml @@ -31,9 +31,6 @@ env: PYTHON_VERSION: '3.12' FLAKY_TESTS: keep_retrying CLANG_VERSION: '19' - CC: sccache clang-19 - CXX: sccache clang++-19 - SCCACHE_GHA_ENABLED: 'true' permissions: contents: read @@ -68,6 +65,10 @@ jobs: test-tarball-linux: needs: build-tarball runs-on: ubuntu-24.04 + env: + CC: sccache clang-19 + CXX: sccache clang++-19 + SCCACHE_GHA_ENABLED: 'true' steps: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: