From d7cc988717ac63f6522076d05c456c8d59f0c8a5 Mon Sep 17 00:00:00 2001 From: Mukilan Thiyagarajan Date: Wed, 11 Dec 2024 17:17:05 +0530 Subject: [PATCH] ci: disable caches on Android CI for testing (#34577) This is to see if #34571 is related to caching in anyway. There is no easy way to delete all Github Action caches using Github UI or cli. Signed-off-by: Mukilan Thiyagarajan --- .github/workflows/android.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 6077daeedcf..09ce7281cbf 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -24,9 +24,10 @@ on: env: RUST_BACKTRACE: 1 SHELL: /bin/bash - SCCACHE_GHA_ENABLED: "true" - RUSTC_WRAPPER: "sccache" - CCACHE: "sccache" + # FIXME: Temporarily commented to see if it helps with #34571. + # SCCACHE_GHA_ENABLED: "true" + # RUSTC_WRAPPER: "sccache" + # CCACHE: "sccache" CARGO_INCREMENTAL: 0 jobs: @@ -55,8 +56,9 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 2 - - name: Run sccache-cache - uses: mozilla-actions/sccache-action@v0.0.6 + # FIXME: Temporarily commented to see if it helps with #34571. + # - name: Run sccache-cache + # uses: mozilla-actions/sccache-action@v0.0.6 - name: Install crown run: cargo install --path support/crown - name: Bootstrap Python