@@ -30,9 +30,6 @@ concurrency:
|
30 | 30 | env: |
31 | 31 | PYTHON_VERSION: '3.12' |
32 | 32 | FLAKY_TESTS: keep_retrying |
33 | | -CC: sccache clang |
34 | | -CXX: sccache clang++ |
35 | | -SCCACHE_GHA_ENABLED: 'true' |
36 | 33 | |
37 | 34 | permissions: |
38 | 35 | contents: read |
@@ -49,10 +46,6 @@ jobs:
|
49 | 46 | uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 |
50 | 47 | with: |
51 | 48 | python-version: ${{ env.PYTHON_VERSION }} |
52 | | - - name: Set up sccache |
53 | | -uses: Mozilla-Actions/sccache-action@7d986dd989559c6ecdb630a3fd2557667be217ad # v0.0.9 |
54 | | -with: |
55 | | -version: v0.10.0 |
56 | 49 | - name: Environment Information |
57 | 50 | run: npx envinfo |
58 | 51 | - name: Make tarball |
@@ -72,6 +65,10 @@ jobs:
|
72 | 65 | test-tarball-linux: |
73 | 66 | needs: build-tarball |
74 | 67 | runs-on: ubuntu-24.04 |
| 68 | +env: |
| 69 | +CC: sccache clang |
| 70 | +CXX: sccache clang++ |
| 71 | +SCCACHE_GHA_ENABLED: 'true' |
75 | 72 | steps: |
76 | 73 | - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 |
77 | 74 | with: |
|