@@ -4,7 +4,7 @@ target_steps: &target_steps
4
4
steps :
5
5
- checkout
6
6
- restore_cache :
7
- key : v1 -ssd1331-{{ .Environment.CIRCLE_JOB }}-{{ checksum "Cargo.toml" }}
7
+ key : v2 -ssd1331-{{ .Environment.CIRCLE_JOB }}-{{ checksum "Cargo.toml" }}
8
8
- run : sudo apt install -qq linkchecker
9
9
- run : rustup default ${RUST_VERSION:-stable}
10
10
- run : rustup component add rustfmt
@@ -18,57 +18,57 @@ target_steps: &target_steps
18
18
fi
19
19
- run : ./build.sh
20
20
- save_cache :
21
- key : v1 -ssd1331-{{ .Environment.CIRCLE_JOB }}-{{ checksum "Cargo.toml" }}
21
+ key : v2 -ssd1331-{{ .Environment.CIRCLE_JOB }}-{{ checksum "Cargo.toml" }}
22
22
paths :
23
23
- ./target
24
- - /home/ubuntu/. cargo
24
+ - /usr/local/ cargo/registry
25
25
26
26
version : 2
27
27
jobs :
28
28
target-arm-unknown-linux-eabi :
29
29
environment :
30
- - TARGET : ' arm-unknown-linux-gnueabi'
30
+ - TARGET : " arm-unknown-linux-gnueabi"
31
31
- DISABLE_EXAMPLES : 1
32
32
<< : *target_steps
33
33
34
34
target-armv7-unknown-linux-gnueabihf :
35
35
environment :
36
- - TARGET : ' armv7-unknown-linux-gnueabihf'
36
+ - TARGET : " armv7-unknown-linux-gnueabihf"
37
37
- DISABLE_EXAMPLES : 1
38
38
<< : *target_steps
39
39
40
40
target-x86_64-unknown-linux-gnu :
41
41
environment :
42
- - TARGET : ' x86_64-unknown-linux-gnu'
42
+ - TARGET : " x86_64-unknown-linux-gnu"
43
43
- DISABLE_EXAMPLES : 1
44
44
<< : *target_steps
45
45
46
46
target-x86_64-unknown-linux-musl :
47
47
environment :
48
- - TARGET : ' x86_64-unknown-linux-musl'
48
+ - TARGET : " x86_64-unknown-linux-musl"
49
49
- DISABLE_EXAMPLES : 1
50
50
<< : *target_steps
51
51
52
52
target-thumbv6m-none-eabi :
53
53
environment :
54
- - TARGET : ' thumbv6m-none-eabi'
54
+ - TARGET : " thumbv6m-none-eabi"
55
55
# Disable example builds as they target thumbv7 and up
56
56
- DISABLE_EXAMPLES : 1
57
57
<< : *target_steps
58
58
59
59
target-thumbv7em-none-eabi :
60
60
environment :
61
- - TARGET : ' thumbv7em-none-eabi'
61
+ - TARGET : " thumbv7em-none-eabi"
62
62
<< : *target_steps
63
63
64
64
target-thumbv7em-none-eabihf :
65
65
environment :
66
- - TARGET : ' thumbv7em-none-eabihf'
66
+ - TARGET : " thumbv7em-none-eabihf"
67
67
<< : *target_steps
68
68
69
69
target-thumbv7m-none-eabi :
70
70
environment :
71
- - TARGET : ' thumbv7m-none-eabi'
71
+ - TARGET : " thumbv7m-none-eabi"
72
72
<< : *target_steps
73
73
74
74
build_jobs : &build_jobs
@@ -99,7 +99,7 @@ workflows:
99
99
<< : *build_jobs
100
100
triggers :
101
101
- schedule :
102
- cron : ' 0 0 * * *'
102
+ cron : " 0 0 * * *"
103
103
filters :
104
104
branches :
105
105
only :
0 commit comments