-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitlab-ci.yml
381 lines (361 loc) · 12.7 KB
/
.gitlab-ci.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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
stages:
- pre-check
- build
- test
before_script:
- if [ -d $CARGO_TARGET_DIR ]; then find $CARGO_TARGET_DIR | wc --lines; du -sh $CARGO_TARGET_DIR; fi
- if [ -d $CARGO_HOME ]; then find $CARGO_HOME | wc --lines; du -sh $CARGO_HOME; fi
- rustc --version
- cargo --version
- clang --version
after_script:
- if [ -d $CARGO_TARGET_DIR ]; then find $CARGO_TARGET_DIR -type f -atime +7 -delete; fi
- if [ -d $CARGO_TARGET_DIR ]; then du -sh $CARGO_TARGET_DIR; fi
- if [ -d $CARGO_HOME ]; then du -sh $CARGO_HOME; fi
build-bookworm:
tags:
- linux
stage: build
image: registry.gitlab.com/sequoia-pgp/build-docker-image/bookworm-prebuild:latest
needs:
- codespell
script:
- cargo run --manifest-path openpgp/Cargo.toml --no-default-features --features crypto-nettle,compression --example supported-algorithms
- $MAKE_TOP
- if ! git diff --quiet Cargo.lock ; then echo "Cargo.lock changed. Please add the change to the corresponding commit." ; git diff ; false ; fi
- if ! git diff --quiet sq ; then echo "Please commit the changes to sq/src/sq-usage.rs." ; false ; fi
- if ! git diff --quiet ; then echo "The build changed the source. Please investigate." ; git diff ; fi
variables:
CARGO_TARGET_DIR: /target
CARGO_HOME: /cargo
RUSTFLAGS: -D warnings -A unused-parens
after_script: []
build-bookworm:arm64:
tags:
- docker-arm64
stage: build
image: registry.gitlab.com/sequoia-pgp/build-docker-image/bookworm-prebuild-arm64:latest
needs:
- codespell
when: manual
only:
variables:
# Forks of this project most likely do not have an arm64 runner
- $CI_PROJECT_NAMESPACE == "sequoia-pgp"
script:
- $MAKE_TOP
- if ! git diff --quiet Cargo.lock ; then echo "Cargo.lock changed. Please add the change to the corresponding commit." ; false ; fi
- if ! git diff --quiet sq ; then echo "Please commit the changes to sq/src/sq-usage.rs." ; false ; fi
- if ! git diff --quiet ; then echo "The build changed the source. Please investigate." ; git diff ; fi
variables:
CARGO_TARGET_DIR: /target
CARGO_HOME: /cargo
RUSTFLAGS: -D warnings -A unused-parens
after_script: []
bookworm:
tags:
- linux
stage: build
image: registry.gitlab.com/sequoia-pgp/build-docker-image/bookworm-prebuild:latest
needs:
- codespell
script:
- SEQUOIA_CTEST_VALGRIND=/usr/bin/valgrind $MAKE_TOP test
variables:
CARGO_TARGET_DIR: /target
CARGO_HOME: /cargo
RUSTFLAGS: -D warnings -A unused-parens
after_script: []
bookworm-crypto-rust:
tags:
- linux
stage: build
image: registry.gitlab.com/sequoia-pgp/build-docker-image/bookworm-prebuild:latest
dependencies:
- codespell
script:
- cargo run --manifest-path openpgp/Cargo.toml --no-default-features --features crypto-rust,compression,allow-experimental-crypto,allow-variable-time-crypto --example supported-algorithms
- cargo test --release --manifest-path openpgp/Cargo.toml --no-default-features --features crypto-rust,compression,allow-experimental-crypto,allow-variable-time-crypto
variables:
CARGO_TARGET_DIR: /target
CARGO_HOME: /cargo
RUSTFLAGS: -D warnings -A unused-parens
after_script: []
bookworm:arm64:
tags:
- docker-arm64
# This job takes ~50 minutes to run, let's only execute it manually or for
# scheduled builds, otherwise this will stall MRs.
only:
refs:
- /arm64/i # refs containing 'arm64' keyword
- tags
- web
- schedules
variables:
# Forks of this project most likely do not have an arm64 runner
- $CI_PROJECT_NAMESPACE == "sequoia-pgp"
when: manual
stage: build
image: registry.gitlab.com/sequoia-pgp/build-docker-image/bookworm-prebuild-arm64:latest
needs:
- codespell
script:
# valgrind reports a false positive, see !1035. Run the tests without it for now.
- $MAKE_TOP test
variables:
CARGO_TARGET_DIR: /target
CARGO_HOME: /cargo
RUSTFLAGS: -D warnings -A unused-parens
after_script: []
benchmarks:
stage: test
image: registry.gitlab.com/sequoia-pgp/build-docker-image/bookworm:latest
needs: ["rust-stable"]
only:
refs:
- /bench/i # refs containing 'bench' keyword
- tags
- web
- schedules
before_script:
- cargo install critcmp
script:
- cargo bench -- --color always --save-baseline $CI_COMMIT_SHA
after_script:
- MAIN_SHA=$(git merge-base $CI_COMMIT_SHA origin/main)
- echo CI_COMMIT_SHA=$CI_COMMIT_SHA > benchmark.txt
- echo CI_COMMIT_BEFORE_SHA=$CI_COMMIT_BEFORE_SHA >> benchmark.txt
- echo MAIN_SHA=$MAIN_SHA >> benchmark.txt
- $CARGO_HOME/bin/critcmp --baselines
- $CARGO_HOME/bin/critcmp $CI_COMMIT_SHA $CI_COMMIT_BEFORE_SHA $MAIN_SHA | tee -a benchmark.txt
artifacts:
expose_as: 'benchmark results'
paths: ['benchmark.txt']
variables:
CARGO_TARGET_DIR: $CI_PROJECT_DIR/../target.benchmarks
RUSTFLAGS: -D warnings -A unused-parens
all_commits:
# Test each commit up to main, to facilitate bisecting.
stage: test
image: registry.gitlab.com/sequoia-pgp/build-docker-image/rust-stable-prebuild:latest
needs: ["rust-stable"]
except:
# Do not run for pushes to the pep-engine branch.
- /^pep-engine$/
script:
- .ci/all_commits.sh
variables:
CARGO_TARGET_DIR: /target
CARGO_HOME: /cargo
RUSTFLAGS: -D warnings -A unused-parens
GIT_STRATEGY: clone
all_commits:arm64:
# Test each commit up to main, to facilitate bisecting.
tags:
- docker-arm64
stage: test
image: registry.gitlab.com/sequoia-pgp/build-docker-image/rust-stable-prebuild-arm64:latest
needs: ["rust-stable:arm64"]
only:
refs:
- /arm64/i # refs containing 'arm64' keyword
- tags
- web
- schedules
variables:
# Forks of this project most likely do not have an arm64 runner
- $CI_PROJECT_NAMESPACE == "sequoia-pgp"
when: manual
except:
# Do not run for pushes to the pep-engine branch.
- /^pep-engine$/
script:
- .ci/all_commits.sh
variables:
CARGO_TARGET_DIR: /target
CARGO_HOME: /cargo
RUSTFLAGS: -D warnings -A unused-parens
GIT_STRATEGY: clone
codespell:
tags:
- linux
stage: pre-check
image: registry.gitlab.com/sequoia-pgp/build-docker-image/bookworm:latest
before_script:
- codespell --version
script:
- $MAKE_TOP codespell CODESPELL_FLAGS=--summary
after_script: []
doc:
tags:
- linux
stage: build
image: registry.gitlab.com/sequoia-pgp/build-docker-image/rust-stable-prebuild:latest
before_script:
- if [ -d $CARGO_TARGET_DIR ]; then find $CARGO_TARGET_DIR | wc --lines; du -sh $CARGO_TARGET_DIR; fi
- if [ -d $CARGO_HOME ]; then find $CARGO_HOME | wc --lines; du -sh $CARGO_HOME; fi
- rustup override set stable
- rustc --version
- cargo --version
- clang --version
script:
- cargo doc --document-private-items --no-deps
variables:
CARGO_TARGET_DIR: /target
CARGO_HOME: /cargo
RUSTFLAGS: -D warnings -A unused-parens
after_script: []
rust-stable:
tags:
- linux
stage: build
image: registry.gitlab.com/sequoia-pgp/build-docker-image/rust-stable-prebuild:latest
before_script:
- if [ -d $CARGO_TARGET_DIR ]; then find $CARGO_TARGET_DIR | wc --lines; du -sh $CARGO_TARGET_DIR; fi
- if [ -d $CARGO_HOME ]; then find $CARGO_HOME | wc --lines; du -sh $CARGO_HOME; fi
- rustup override set stable
- rustc --version
- cargo --version
- clang --version
script:
- CARGO_PACKAGES="-p buffered-reader -p sequoia-openpgp" $MAKE_TOP test
variables:
CARGO_TARGET_DIR: /target
CARGO_HOME: /cargo
RUSTFLAGS: -D warnings -A unused-parens
clippy:
tags:
- linux
stage: build
image: registry.gitlab.com/sequoia-pgp/build-docker-image/rust-stable-prebuild:latest
before_script:
- if [ -d $CARGO_TARGET_DIR ]; then find $CARGO_TARGET_DIR | wc --lines; du -sh $CARGO_TARGET_DIR; fi
- if [ -d $CARGO_HOME ]; then find $CARGO_HOME | wc --lines; du -sh $CARGO_HOME; fi
- apt-get -y install libssl-dev capnproto libsqlite3-dev
- rustup override unset
- rustup component add clippy
- cargo clippy --version
- rustc --version
- cargo --version
- clang --version
script:
- cargo clippy
variables:
CARGO_TARGET_DIR: /target
CARGO_HOME: /cargo
RUSTFLAGS: -D warnings -A unused-parens
rust-stable:arm64:
tags:
- docker-arm64
stage: build
image: registry.gitlab.com/sequoia-pgp/build-docker-image/rust-stable-prebuild-arm64:latest
only:
variables:
# Forks of this project most likely do not have an arm64 runner
- $CI_PROJECT_NAMESPACE == "sequoia-pgp"
when: manual
before_script:
- if [ -d $CARGO_TARGET_DIR ]; then find $CARGO_TARGET_DIR | wc --lines; du -sh $CARGO_TARGET_DIR; fi
- if [ -d $CARGO_HOME ]; then find $CARGO_HOME | wc --lines; du -sh $CARGO_HOME; fi
- rustup override set stable
- rustc --version
- cargo --version
- clang --version
script:
- CARGO_PACKAGES="-p buffered-reader -p sequoia-openpgp" $MAKE_TOP test
variables:
CARGO_TARGET_DIR: /target
CARGO_HOME: /cargo
RUSTFLAGS: -D warnings -A unused-parens
windows-gnu:
tags:
- win
- win2019
stage: build
image: registry.gitlab.com/sequoia-pgp/build-docker-image/windows-gnu
# This job takes ~20 minutes to run, let's only execute it manually or for
# scheduled builds, otherwise this will stall MRs often not related to Windows
only:
refs:
- /windows/i # refs containing 'windows' keyword
- tags
- web
- schedules
variables:
# Forks of this project most likely use gitlab's shared windows runners, which
# do not use the docker executor, so disable the windows jobs for forks.
- $CI_PROJECT_NAMESPACE == "sequoia-pgp"
before_script:
- clang -v
- rustc --version --verbose
- cargo --version
script:
- cargo test --workspace
# https://github.com/rust-lang/cargo/issues/5015
- cargo test --manifest-path openpgp/Cargo.toml --no-default-features --features crypto-cng,compression
after_script: []
variables:
CFLAGS: "" # Silence some C warnings when compiling under Windows
windows-msvc:
tags:
- win
- win2019
stage: build
image: registry.gitlab.com/sequoia-pgp/build-docker-image/windows-msvc
only:
variables:
# Forks of this project most likely use gitlab's shared windows runners, which
# do not use the docker executor, so disable the windows jobs for forks.
- $CI_PROJECT_NAMESPACE == "sequoia-pgp"
before_script:
- rustc --version --verbose
- cargo --version
script:
# https://github.com/rust-lang/cargo/issues/5015
- cargo run --manifest-path openpgp/Cargo.toml --no-default-features --features crypto-cng,compression --example supported-algorithms
- cargo test --manifest-path openpgp/Cargo.toml --no-default-features --features crypto-cng,compression
after_script: []
variables:
CFLAGS: "" # Silence some C warnings when compiling with MSVC
windows-msvc-32:
tags:
- win
- win2019
stage: build
image:
name: registry.gitlab.com/sequoia-pgp/build-docker-image/windows-msvc
# Set up a cross compilation environment for building x86 binaries on amd64, line copied from Dockerfile.windows.msvc
# see https://renenyffenegger.ch/notes/Windows/dirs/Program-Files-x86/Microsoft-Visual-Studio/version/edition/Common7/Tools/VsDevCmd_bat
#
# Alternatively: ["C:\\BuildTools\\VC\\Auxiliary\\Build\\vcvarsamd64_x86.bat", "&&", "type", "README", "&&", "powershell.exe", "-NoLogo", "-ExecutionPolicy", "Bypass"]
# see https://docs.microsoft.com/en-us/cpp/build/building-on-the-command-line?view=msvc-160
entrypoint: ["C:\\BuildTools\\Common7\\Tools\\VsDevCmd.bat", "-arch=x86", "-host_arch=amd64", "&&", "type", "README", "&&", "powershell.exe", "-NoLogo", "-ExecutionPolicy", "Bypass"]
only:
variables:
# Forks of this project most likely use gitlab's shared windows runners, which
# do not use the docker executor, so disable the windows jobs for forks.
- $CI_PROJECT_NAMESPACE == "sequoia-pgp"
before_script:
- rm rust-toolchain
- rustup default 1.56.0-x86_64-pc-windows-msvc
- rustup target add i686-pc-windows-msvc
- rustup show
- rustc --version --verbose
- cargo --version
script:
# https://github.com/rust-lang/cargo/issues/5015
- cargo test --manifest-path openpgp/Cargo.toml --no-default-features --features crypto-cng,compression --target i686-pc-windows-msvc
after_script: []
variables:
CFLAGS: "" # Silence some C warnings when compiling with MSVC
variables:
DEBIAN_FRONTEND: noninteractive
CARGO_HOME: $CI_PROJECT_DIR/../cargo
CARGO_FLAGS: --color always
CARGO_INCREMENTAL: 0
RUST_BACKTRACE: full
RUSTFLAGS: -D warnings
CFLAGS: -Werror
MAKE_TOP: make --file=.Makefile
QUICKCHECK_GENERATOR_SIZE: 500 # https://github.com/BurntSushi/quickcheck/pull/240