diff --git a/.github/workflows/apple.yml b/.github/workflows/apple.yml index 9812d4d1..ccf33ea1 100644 --- a/.github/workflows/apple.yml +++ b/.github/workflows/apple.yml @@ -14,9 +14,15 @@ concurrency: jobs: pythonbuild: runs-on: 'macos-13' + env: + SCCACHE_GHA_ENABLED: "true" + RUSTC_WRAPPER: "sccache" steps: - uses: actions/checkout@v4 + - name: Run sccache-cache + uses: mozilla-actions/sccache-action@v0.0.6 + - name: Emit rustc version run: | rustc --version > .rustc-version diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 2093ebc3..05d4a723 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -14,6 +14,9 @@ concurrency: jobs: pythonbuild: runs-on: ubuntu-22.04 + env: + SCCACHE_GHA_ENABLED: "true" + RUSTC_WRAPPER: "sccache" steps: - name: Install System Dependencies run: | @@ -22,6 +25,9 @@ jobs: - uses: actions/checkout@v4 + - name: Run sccache-cache + uses: mozilla-actions/sccache-action@v0.0.6 + - name: Emit rustc version run: | rustc --version > .rustc-version diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 592efe78..f917a96a 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -14,9 +14,15 @@ concurrency: jobs: pythonbuild: runs-on: 'windows-2019' + env: + SCCACHE_GHA_ENABLED: "true" + RUSTC_WRAPPER: "sccache" steps: - uses: actions/checkout@v4 + - name: Run sccache-cache + uses: mozilla-actions/sccache-action@v0.0.6 + - name: Emit rustc version run: | rustc --version > .rustc-version