Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit d26a670

Browse files
committed
Use the specified rust version
1 parent be5b86d commit d26a670

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

.circleci/config.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,26 @@ jobs:
55
ignore:
66
- gh-pages
77
docker:
8+
# The compiletest-rs tests assume a specific Rust version's error outputs
89
- image: rust:1.47
910
steps:
1011
- checkout
11-
- run:
12-
name: Switch to stable rust
13-
command: rustup default stable
14-
1512
- run:
1613
name: Install tooling
1714
command: |
18-
rustup component add clippy
15+
cargo intall clippy
1916
2017
- run:
2118
name: Version information
2219
command: |
2320
rustc --version
2421
cargo --version
25-
rustup --version
2622
cargo clippy --version
2723
28-
- run:
29-
name: Calculate dependencies
30-
command: cargo generate-lockfile
24+
# We ship the Cargo.lock, to support Nix derivations
25+
# - run:
26+
# name: Calculate dependencies
27+
# command: cargo generate-lockfile
3128

3229
- restore_cache:
3330
keys:

0 commit comments

Comments
 (0)