Skip to content

Commit 3318718

Browse files
committed
Rename base -> std and configure explicitely for standard library
1 parent 43fee8a commit 3318718

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

Diff for: .circleci/config.yml

+8-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ workflows:
33
version: 2
44
test:
55
jobs:
6-
- base
6+
- std
77
- singlepass_vm
88
- cranelift_vm
99
- hackatom
@@ -12,7 +12,7 @@ workflows:
1212
- clippy
1313

1414
jobs:
15-
base:
15+
std:
1616
docker:
1717
- image: rust:1.40.0
1818
steps:
@@ -25,20 +25,22 @@ jobs:
2525
command: rustc --version; cargo --version; rustup --version; rustup target list --installed
2626
- restore_cache:
2727
keys:
28-
- cargocache-base-rust:1.40.0-{{ checksum "Cargo.lock" }}
28+
- cargocache-std-rust:1.40.0-{{ checksum "Cargo.lock" }}
2929
- run:
30-
name: Build all targets (including workspaces)
30+
name: Build standard library
31+
working_directory: ~/project/lib/std
3132
command: cargo build --locked
3233
- run:
33-
name: Run all tests (including workspaces)
34+
name: Run standard library tests
35+
working_directory: ~/project/lib/std
3436
command: cargo test --locked
3537
- save_cache:
3638
paths:
3739
- /usr/local/cargo/registry
3840
- target/debug/.fingerprint
3941
- target/debug/build
4042
- target/debug/deps
41-
key: cargocache-base-rust:1.40.0-{{ checksum "Cargo.lock" }}
43+
key: cargocache-std-rust:1.40.0-{{ checksum "Cargo.lock" }}
4244

4345
singlepass_vm:
4446
docker:

0 commit comments

Comments
 (0)