forked from filecoin-project/bellperson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yml
291 lines (263 loc) · 9.34 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
version: 2.1
parameters:
nightly-version:
type: string
default: "nightly-2020-11-20"
#orbs:
# codecov: codecov/[email protected]
executors:
default:
machine:
image: ubuntu-1604-cuda-10.1:201909-23
working_directory: ~/gpuci
resource_class: gpu.nvidia.medium
restore-workspace: &restore-workspace
attach_workspace:
at: ~/
restore-cache: &restore-cache
restore_cache:
keys:
- cargo-v1-{{ checksum "rust-toolchain" }}-{{ checksum "Cargo.toml" }}-{{ checksum "Cargo.lock" }}-{{ arch }}
- repo-source-{{ .Branch }}-{{ .Revision }}
commands:
set-env-path:
steps:
- run:
name: Set the PATH env variable
command: |
# Also put the Rust LLVM tools into the PATH.
echo 'export PATH="$HOME:~/.cargo/bin:~/.rustup/toolchains/<< pipeline.parameters.nightly-version >>-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/bin:$PATH"' | tee --append $BASH_ENV
source $BASH_ENV
install-gpu-deps:
steps:
- run:
name: Install libraries for GPU tests
command: |
sudo apt-get update -y
sudo apt install -y ocl-icd-opencl-dev
test_target_pairing:
parameters:
target:
type: string
steps:
- *restore-workspace
- *restore-cache
- run:
name: Test pairing (<< parameters.target >>)
command: TARGET=<< parameters.target >> cargo test --no-default-features --features pairing
no_output_timeout: 15m
test_target_pairing_gpu:
parameters:
target:
type: string
steps:
- *restore-workspace
- *restore-cache
- run:
name: Test pairing (GPU) (<< parameters.target >>)
command: TARGET=<< parameters.target >> cargo test --release --no-default-features --features gpu,pairing
no_output_timeout: 30m
test_target_blst:
parameters:
target:
type: string
steps:
- *restore-workspace
- *restore-cache
- run:
name: Test blst (<< parameters.target >>)
command: TARGET=<< parameters.target >> cargo test --no-default-features --features blst
no_output_timeout: 15m
test_target_blst_gpu:
parameters:
target:
type: string
steps:
- *restore-workspace
- *restore-cache
- run:
name: Test blst (GPU) (<< parameters.target >>)
command: TARGET=<< parameters.target >> cargo test --release --no-default-features --features gpu,blst
no_output_timeout: 30m
jobs:
cargo_fetch:
executor: default
steps:
- checkout
- run: curl https://sh.rustup.rs -sSf | sh -s -- -y
- set-env-path
- run: echo $HOME
- run: cargo --version
- run: rustc --version
- run:
name: Update submodules
command: git submodule update --init --recursive
- run:
name: Calculate dependencies
command: cargo generate-lockfile
- restore_cache:
keys:
- cargo-v1-{{ checksum "rust-toolchain" }}-{{ checksum "Cargo.toml" }}-{{ checksum "Cargo.lock" }}-{{ arch }}
- run: cargo update
- run: cargo fetch
- run: rustup install $(cat rust-toolchain)
- run: rustup default $(cat rust-toolchain)
# A nightly build is needed for code coverage reporting
- run: rustup toolchain install --profile minimal << pipeline.parameters.nightly-version >>
- run: rustup component add --toolchain << pipeline.parameters.nightly-version >> llvm-tools-preview
- run: rustc --version
- run: rm -rf .git
- persist_to_workspace:
root: ~/
paths:
- gpuci
- save_cache:
key: cargo-v1-{{ checksum "rust-toolchain" }}-{{ checksum "Cargo.toml" }}-{{ checksum "Cargo.lock" }}-{{ arch }}
paths:
- "~/.cargo"
- "~/.rustup"
test_pairing_x86_64-unknown-linux-gnu:
executor: default
steps:
- set-env-path
- install-gpu-deps
- test_target_pairing:
target: "x86_64-unknown-linux-gnu"
test_pairing_gpu_x86_64-unknown-linux-gnu:
executor: default
steps:
- set-env-path
- install-gpu-deps
- test_target_pairing_gpu:
target: "x86_64-unknown-linux-gnu"
test_blst_x86_64-unknown-linux-gnu:
executor: default
steps:
- set-env-path
- install-gpu-deps
- test_target_blst:
target: "x86_64-unknown-linux-gnu"
test_blst_gpu_x86_64-unknown-linux-gnu:
executor: default
steps:
- set-env-path
- install-gpu-deps
- test_target_blst_gpu:
target: "x86_64-unknown-linux-gnu"
rustfmt:
executor: default
steps:
- *restore-workspace
- *restore-cache
- set-env-path
- run:
name: Run cargo fmt
command: cargo fmt --all -- --check
clippy:
executor: default
steps:
- *restore-workspace
- *restore-cache
- set-env-path
- run:
name: Run cargo clippy (default features (pairing))
command: cargo clippy --all-targets --features gpu -- -D warnings
- run:
name: Run cargo clippy (pairing)
command: cargo clippy --all-targets --no-default-features --features pairing -- -D warnings
- run:
name: Run cargo clippy (blst)
command: cargo clippy --all-targets --no-default-features --features blst -- -D warnings
- run:
name: Run cargo clippy (pairing,gpu)
command: cargo clippy --all-targets --no-default-features --features pairing,gpu -- -D warnings
- run:
name: Run cargo clippy (blst,gpu)
command: cargo clippy --all-targets --no-default-features --features blst,gpu -- -D warnings
coverage_run:
executor: default
parameters:
cargo-args:
description: Addtional arguments for the cargo command
type: string
default: ""
test-args:
description: Additional arguments for the test executable (after the `--`)
type: string
default: ""
environment:
# Incremental build is not supported when profiling
CARGO_INCREMENTAL: 0
# -Zinstrument-coverage: enable llvm coverage instrumentation
# -Ccodegen-units=1: building in parallel is not supported when profiling
# -Copt-level=0: disable optimizations for more accurate coverage
# -Clink-dead-code: dead code should be considered as not covered code
# -Coverflow-checks=off: checking for overflow is not needed for coverage reporting
# -Cinline-threshold=0: do not inline
RUSTFLAGS: -Zinstrument-coverage -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Cinline-threshold=0
# Make sure that each run of an executable creates a new profile file, with the default
# name they would override each other
LLVM_PROFILE_FILE: "%m.profraw"
steps:
- *restore-workspace
- *restore-cache
- set-env-path
- install-gpu-deps
- run:
name: Generate coverage report
command: |
RUST_LOG=info cargo +<< pipeline.parameters.nightly-version >> test --features _coverage << parameters.cargo-args >> -- --nocapture << parameters.test-args >>
# Do *not* use sparse output. It leads to more lines that are not
# taken into account at all
llvm-profdata merge --output=default.profdata ./*.profraw
# The compiled files contain the coverage information. From running the tests we don't
# know what those files are called, hence use all files from the `./target/debug/deps`
# directory which don't have an extension.
OBJECT_FILES=$(find ./target/debug/deps/* -name '*' -not -name '*\.*' -printf '%p,'|head --bytes -1)
# Only export the coverage of this project, we don't care about coverage of
# dependencies
llvm-cov export --ignore-filename-regex=".cargo|.rustup" --format=lcov -instr-profile=default.profdata --object=${OBJECT_FILES} > lcov.info
## Codecov automatically merges the reports in case there are several ones uploaded
#- codecov/upload:
# file: lcov.info
workflows:
version: 2.1
test:
jobs:
- cargo_fetch
- rustfmt:
requires:
- cargo_fetch
- clippy:
requires:
- cargo_fetch
- test_pairing_x86_64-unknown-linux-gnu:
requires:
- cargo_fetch
- test_pairing_gpu_x86_64-unknown-linux-gnu:
requires:
- cargo_fetch
- test_blst_x86_64-unknown-linux-gnu:
requires:
- cargo_fetch
- test_blst_gpu_x86_64-unknown-linux-gnu:
requires:
- cargo_fetch
#- coverage_run:
# name: coverage_default_features
# requires:
# - cargo_fetch
#- coverage_run:
# name: coverage_gpu_feature_lib
# cargo-args: "--features gpu --lib"
# # If run in parallel the GPU tests will block and hence fail
# test-args: "--test-threads=1"
# requires:
# - cargo_fetch
#- coverage_run:
# name: coverage_gpu_feature_integration
# cargo-args: "--features gpu --test '*'"
# # If run in parallel the GPU tests will block and hence fail
# test-args: "--test-threads=1"
# requires:
# - cargo_fetch