@@ -30,7 +30,7 @@ workflows:
30
30
jobs :
31
31
build_and_test :
32
32
docker :
33
- - image : rust:1.75
33
+ - image : rust:1.78
34
34
working_directory : ~/project
35
35
steps :
36
36
- checkout
42
42
command : cargo update
43
43
- restore_cache :
44
44
keys :
45
- - cargocache-v2-multi-test:1.75 -{{ checksum "Cargo.lock" }}
46
- - cargocache-v2-multi-test:1.75 -
45
+ - cargocache-v2-multi-test:1.78 -{{ checksum "Cargo.lock" }}
46
+ - cargocache-v2-multi-test:1.78 -
47
47
- run :
48
48
name : Build library for native target
49
49
command : cargo build --locked
54
54
paths :
55
55
- /usr/local/cargo/registry
56
56
- target
57
- key : cargocache-v2-multi-test:1.75 -{{ checksum "Cargo.lock" }}
57
+ key : cargocache-v2-multi-test:1.78 -{{ checksum "Cargo.lock" }}
58
58
59
59
build_minimal :
60
60
docker :
74
74
command : cargo update -p ahash && cargo update -p num-bigint
75
75
- restore_cache :
76
76
keys :
77
- - cargocache-v2-multi-test:1.75 -minimal-{{ checksum "Cargo.toml" }}
77
+ - cargocache-v2-multi-test:1.78 -minimal-{{ checksum "Cargo.toml" }}
78
78
- run :
79
79
name : Build library for native target
80
80
command : cargo build -Zminimal-versions --all-features
@@ -85,11 +85,11 @@ jobs:
85
85
paths :
86
86
- /usr/local/cargo/registry
87
87
- target
88
- key : cargocache-v2-multi-test:1.75 -minimal-{{ checksum "Cargo.toml" }}
88
+ key : cargocache-v2-multi-test:1.78 -minimal-{{ checksum "Cargo.toml" }}
89
89
90
90
build_maximal :
91
91
docker :
92
- - image : rust:1.75
92
+ - image : rust:1.78
93
93
working_directory : ~/project
94
94
steps :
95
95
- checkout
@@ -101,7 +101,7 @@ jobs:
101
101
command : cargo update
102
102
- restore_cache :
103
103
keys :
104
- - cargocache-v2-multi-test:1.75 -{{ checksum "Cargo.lock" }}
104
+ - cargocache-v2-multi-test:1.78 -{{ checksum "Cargo.lock" }}
105
105
- run :
106
106
name : Build library for native target
107
107
command : cargo build --locked --all-features
@@ -112,11 +112,11 @@ jobs:
112
112
paths :
113
113
- /usr/local/cargo/registry
114
114
- target
115
- key : cargocache-v2-multi-test:1.75 -{{ checksum "Cargo.lock" }}
115
+ key : cargocache-v2-multi-test:1.78 -{{ checksum "Cargo.lock" }}
116
116
117
117
lint :
118
118
docker :
119
- - image : rust:1.75
119
+ - image : rust:1.78
120
120
steps :
121
121
- checkout
122
122
- run :
@@ -127,8 +127,8 @@ jobs:
127
127
command : cargo update
128
128
- restore_cache :
129
129
keys :
130
- - cargocache-v2-lint-rust:1.75 -{{ checksum "Cargo.lock" }}
131
- - cargocache-v2-lint-rust:1.75 -
130
+ - cargocache-v2-lint-rust:1.78 -{{ checksum "Cargo.lock" }}
131
+ - cargocache-v2-lint-rust:1.78 -
132
132
- run :
133
133
name : Add rustfmt component
134
134
command : rustup component add rustfmt
@@ -147,7 +147,7 @@ jobs:
147
147
- target/debug/.fingerprint
148
148
- target/debug/build
149
149
- target/debug/deps
150
- key : cargocache-v2-lint-rust:1.75 -{{ checksum "Cargo.lock" }}
150
+ key : cargocache-v2-lint-rust:1.78 -{{ checksum "Cargo.lock" }}
151
151
152
152
coverage :
153
153
# https://circleci.com/developer/images?imageType=machine
0 commit comments