Skip to content

Commit

Permalink
github actions: remove rust-cache
Browse files Browse the repository at this point in the history
Now that we're trying to review changes to github action scripts,
it may not be worthwhile to use the cache. Experiment with removing
it to see how that affects ci performance.
  • Loading branch information
rillian committed Jan 16, 2024
1 parent 20878cd commit 0c8c7b7
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 12 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ jobs:
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Cache
uses: Swatinem/rust-cache@a22603398250b864f7190077025cf752307154dc # v2.7.2

- name: Format
run: cargo fmt --all -- --check

Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/nostd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@ jobs:
- name: Toolchain
run: rustup default ${{matrix.rust}}

- name: Cache
uses: Swatinem/rust-cache@a22603398250b864f7190077025cf752307154dc # v2.7.2

- name: Check
run: cargo check --no-default-features --all-targets

Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@ jobs:
- name: Toolchain
run: rustup default ${{matrix.rust}}

- name: Cache
uses: Swatinem/rust-cache@a22603398250b864f7190077025cf752307154dc # v2.7.2

- name: Build
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3
with:
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ jobs:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Cache
uses: Swatinem/rust-cache@a22603398250b864f7190077025cf752307154dc # v2.7.2

- name: WASM pkg
run: |
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
Expand Down

0 comments on commit 0c8c7b7

Please sign in to comment.