Skip to content

Commit

Permalink
chore: disable sscache
Browse files Browse the repository at this point in the history
  • Loading branch information
mosure committed Sep 4, 2024
1 parent 3913ef0 commit 0ea5c3d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
toolchain: ${{ matrix.rust-toolchain }}
components: rustfmt, clippy
enable-sccache: "true"
enable-sccache: "false"

- name: build
run: cargo build
Expand All @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/deploy-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"

0 comments on commit 0ea5c3d

Please sign in to comment.