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"