Skip to content

Commit df9a9d1

Browse files
committed
don't install cargo-cache on 1.57 CI
1 parent 056d2cd commit df9a9d1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
- name: workaround MSRV issues
8181
if: matrix.version != 'stable'
8282
run: |
83-
cargo update -p=time --precise=0.3.13
83+
cargo update -p=time --precise=0.3.13 # time is only a dev dep so shouldn't affect msrv
8484
8585
- name: check lib
8686
if: >
@@ -123,6 +123,7 @@ jobs:
123123
sudo bash -c "ulimit -Sl 512 && ulimit -Hl 512 && PATH=$PATH:/usr/share/rust/.cargo/bin && RUSTUP_TOOLCHAIN=${{ matrix.version }} cargo ci-test && RUSTUP_TOOLCHAIN=${{ matrix.version }} cargo ci-test-linux"
124124
125125
- name: Clear the cargo caches
126+
if: matrix.version == 'stable' # MSRV(1.58) cargo-cache now fails to install on 1.57
126127
run: |
127128
cargo install cargo-cache --version 0.6.2 --no-default-features --features ci-autoclean
128129
cargo-cache

0 commit comments

Comments
 (0)