From 0ea5c3df9378f52f6d718ea8a4b7f7d97f69dc15 Mon Sep 17 00:00:00 2001 From: mosure Date: Tue, 3 Sep 2024 21:39:29 -0500 Subject: [PATCH] chore: disable sscache --- .github/workflows/build.yml | 4 ++-- .github/workflows/clippy.yml | 2 +- .github/workflows/deploy-pages.yml | 2 +- .github/workflows/test.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0cef9417..df950063 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,7 +30,7 @@ jobs: with: toolchain: ${{ matrix.rust-toolchain }} components: rustfmt, clippy - enable-sccache: "true" + enable-sccache: "false" - name: build run: cargo build @@ -55,7 +55,7 @@ jobs: with: toolchain: ${{ matrix.rust-toolchain }} components: rustfmt, clippy - enable-sccache: "true" + enable-sccache: "false" - name: build_tools run: cargo build --bin ply_to_gcloud \ No newline at end of file diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 0c07027e..91746aa5 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -31,7 +31,7 @@ jobs: with: toolchain: ${{ matrix.rust-toolchain }} components: rustfmt, clippy - enable-sccache: "true" + enable-sccache: "false" - name: lint run: cargo clippy -- -Dwarnings diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index 8ab544bc..d303eec3 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -27,7 +27,7 @@ jobs: with: toolchain: nightly components: rustfmt, clippy - enable-sccache: "true" + enable-sccache: "false" - name: install wasm32-unknown-unknown run: rustup target add wasm32-unknown-unknown diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ab94748d..c77437d1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,7 +31,7 @@ jobs: with: toolchain: ${{ matrix.rust-toolchain }} components: rustfmt, clippy - enable-sccache: "true" + enable-sccache: "false" - name: test (default) run: cargo test @@ -56,7 +56,7 @@ jobs: with: toolchain: ${{ matrix.rust-toolchain }} components: rustfmt, clippy - enable-sccache: "true" + enable-sccache: "false" - name: test (web) run: cargo test --no-default-features --features="web io_ply tooling"