File tree 1 file changed +8
-6
lines changed
1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ workflows:
3
3
version : 2
4
4
test :
5
5
jobs :
6
- - base
6
+ - std
7
7
- singlepass_vm
8
8
- cranelift_vm
9
9
- hackatom
@@ -12,7 +12,7 @@ workflows:
12
12
- clippy
13
13
14
14
jobs :
15
- base :
15
+ std :
16
16
docker :
17
17
- image : rust:1.40.0
18
18
steps :
@@ -25,20 +25,22 @@ jobs:
25
25
command : rustc --version; cargo --version; rustup --version; rustup target list --installed
26
26
- restore_cache :
27
27
keys :
28
- - cargocache-base -rust:1.40.0-{{ checksum "Cargo.lock" }}
28
+ - cargocache-std -rust:1.40.0-{{ checksum "Cargo.lock" }}
29
29
- run :
30
- name : Build all targets (including workspaces)
30
+ name : Build standard library
31
+ working_directory : ~/project/lib/std
31
32
command : cargo build --locked
32
33
- run :
33
- name : Run all tests (including workspaces)
34
+ name : Run standard library tests
35
+ working_directory : ~/project/lib/std
34
36
command : cargo test --locked
35
37
- save_cache :
36
38
paths :
37
39
- /usr/local/cargo/registry
38
40
- target/debug/.fingerprint
39
41
- target/debug/build
40
42
- 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" }}
42
44
43
45
singlepass_vm :
44
46
docker :
You can’t perform that action at this time.
0 commit comments