Skip to content

Commit

Permalink
ci: Install volta from lock file (#364)
Browse files Browse the repository at this point in the history
[Volta install fails for arm
Ubuntu](https://app.circleci.com/pipelines/github/apollographql/federation-rs/1859/workflows/c28ac5bf-bbbb-4186-86d4-9862b75e64ed/jobs/8236)
because:

1. Their rust-toolchain sets Rust to 1.63
2. Hashbrown 0.14.0 is allowed by their Cargo.toml
3. Hashbrown 0.14.0 MSRV is 1.64

I think just using the lock file should fix this
  • Loading branch information
dbanty authored Jun 26, 2023
2 parents 8b63a1b + 41e1ade commit 95315ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ commands:
VOLTA_VERSION=$(curl --silent "https://volta.sh/latest-version")
git clone https://github.com/volta-cli/volta --branch "v${VOLTA_VERSION}"
cd volta
cargo install --path .
cargo install --path . --locked
- when:
condition:
Expand Down

0 comments on commit 95315ba

Please sign in to comment.