diff options
Diffstat (limited to '.github/workflows/android.yml')
-rw-r--r-- | .github/workflows/android.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index e77d3679f76..dfa1b057800 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -24,10 +24,11 @@ on: env: RUST_BACKTRACE: 1 SHELL: /bin/bash - # FIXME: Temporarily commented to see if it helps with #34571. - # SCCACHE_GHA_ENABLED: "true" - # RUSTC_WRAPPER: "sccache" - # CCACHE: "sccache" + SCCACHE_GHA_ENABLED: "true" + RUSTC_WRAPPER: "sccache" + CCACHE: "sccache" + # Increment this to purge the cache (https://github.com/mozilla/sccache/blob/main/docs/GHA.md) + SCCACHE_GHA_VERSION: 2 CARGO_INCREMENTAL: 0 jobs: @@ -56,9 +57,8 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 2 - # FIXME: Temporarily commented to see if it helps with #34571. - # - name: Run sccache-cache - # uses: mozilla-actions/sccache-action@v0.0.6 + - name: Run sccache-cache + uses: mozilla-actions/sccache-action@v0.0.7 - name: Install crown run: cargo install --path support/crown - name: Bootstrap Python |