Skip to content

Commit

Permalink
build: use rust 1.56.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DrPeterVanNostrand committed Mar 10, 2022
1 parent c442910 commit 84496a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2.1
parameters:
nightly-toolchain:
type: string
default: "nightly-2021-04-24"
default: "nightly-2022-03-09"

executors:
default:
Expand Down Expand Up @@ -340,15 +340,15 @@ commands:
- run: cp -R ~/.cargo ~/.rustup /tmp/
- save_cache:
name: "Save rustup cache"
key: cargo-v28-e-{{ checksum "rust-toolchain" }}-{{ checksum "Cargo.toml" }}-{{ checksum "Cargo.lock" }}
key: cargo-v29-e-{{ checksum "rust-toolchain" }}-{{ checksum "Cargo.toml" }}-{{ checksum "Cargo.lock" }}
paths:
- /tmp/.cargo
- /tmp/.rustup
restore_rustup_cache:
steps:
- restore_cache:
name: "Restore rustup cache"
key: cargo-v28-e-{{ checksum "rust-toolchain" }}-{{ checksum "Cargo.toml" }}-{{ checksum "Cargo.lock" }}
key: cargo-v29-e-{{ checksum "rust-toolchain" }}-{{ checksum "Cargo.toml" }}-{{ checksum "Cargo.lock" }}
# Cache might not be created yet, hence ignore if the move fails
- run: cp -R /tmp/.cargo /tmp/.rustup ~/ || true
save_parameter_cache:
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.54.0
1.56.0

0 comments on commit 84496a9

Please sign in to comment.