-
Notifications
You must be signed in to change notification settings - Fork 1
354 lines (283 loc) · 11.3 KB
/
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
# There are two kinds of continuous integration jobs in this project:
#
# - Every code submission or master push passes continuous integration on the
# minimal supported Rust version and the current stable Rust version.
# - Two times a month, a scheduled job makes sure that the code remains
# compatible and lint-free on upcoming Rust toolchains (beta and nightly).
name: Continuous Integration
on:
push:
pull_request:
schedule:
- cron: '0 0 13/15 * *'
# Cancel existing jobs on new pushes to the same branch
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: -D warnings
RUSTDOCFLAGS: -D warnings
MINIMAL_RUST: 1.75.0 # Minimal Supported Rust Version
jobs:
# Workaround for github CI dropping env var expansion in matrix strategy
matrix_vars:
runs-on: ubuntu-latest
outputs:
MINIMAL_RUST: ${{ env.MINIMAL_RUST }}
steps:
- name: Forward env var to output
run: echo "MINIMAL_RUST=${{ env.MINIMAL_RUST }}" >> $GITHUB_OUTPUT
# Formatting and dependency checking doesn't depend on configuration, and we
# only care about the formatting rules of the latest supported Rust version
format-machete:
# Don't run CI twice when a PR is created from a branch internal to the repo
if: github.event_name == 'push' || github.event_name == 'schedule' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Set up stable toolchain
if: github.event_name != 'schedule'
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt
- name: Set up nightly toolchain
if: github.event_name == 'schedule'
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly
components: rustfmt
- name: Check code formatting
run: cargo fmt --all --check
- name: Set up cargo-binstall
run: curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
- name: Look for unused dependencies with cargo-machete
run: |
# FIXME: --force used as a workaround for https://github.com/Swatinem/rust-cache/issues/204
cargo binstall -y --force cargo-machete
cargo machete
# Lints should cover all cfg code paths
#
# We don't care about warnings on the minimum supported Rust version, only
# about building and running correctly.
lints:
if: github.event_name == 'push' || github.event_name == 'schedule' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
strategy:
matrix:
features:
- 'compute_naive'
- 'compute_naive,weights-runtime'
- 'compute_regular'
- 'compute_manualvec'
- 'compute_autovec'
- 'compute_block'
- 'compute_parallel'
- 'compute_gpu_naive'
- 'compute_gpu_specialized'
- 'compute_gpu_specialized,gpu-debug-utils'
env:
JOB_FLAGS: '--workspace --features=${{ matrix.features }}'
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install native dependencies
uses: awalsh128/cache-apt-pkgs-action@latest
with:
version: 1.0
packages: libhdf5-dev libhwloc-dev libudev-dev ninja-build vulkan-validationlayers-dev libvulkan-dev vulkan-tools
- name: Set up stable toolchain
if: github.event_name != 'schedule'
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: clippy
- name: Set up nightly toolchain
if: github.event_name == 'schedule'
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly
components: clippy
- name: Check clippy lints
run: cargo clippy ${{ env.JOB_FLAGS }} --all-targets -- -D warnings
- name: Build docs
run: cargo doc ${{ env.JOB_FLAGS }}
# Run the tests on all supported Rust versions (main CI)
test-contrib:
# Don't run CI twice when a PR is created from a branch internal to the repo
# Don't run in scheduled jobs, that's what test-scheduled is for
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
needs: matrix_vars
strategy:
matrix:
toolchain:
- ${{ needs.matrix_vars.outputs.MINIMAL_RUST }}
- stable
features:
- 'compute_naive'
- 'compute_naive,weights-runtime'
- 'compute_gpu_specialized,gpu-debug-utils'
env:
FEATURES_FLAG: '--features=${{ matrix.features }}'
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install native dependencies
uses: awalsh128/cache-apt-pkgs-action@latest
with:
version: 1.0
packages: libhdf5-dev libhwloc-dev libudev-dev ninja-build vulkan-validationlayers-dev libvulkan-dev vulkan-tools
- name: Set up toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
- name: Run unit tests
run: cargo test --workspace ${{ env.FEATURES_FLAG }}
# Run a small simulation on all supported Rust versions (main CI)
#
# FIXME: There should be a way to use conditional build matrices without
# duplicating the whole job recipe...
#
test-simulate:
# Don't run CI twice when a PR is created from a branch internal to the repo
# Don't run in scheduled jobs, that's what test-scheduled is for
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
needs: matrix_vars
strategy:
matrix:
toolchain:
- ${{ needs.matrix_vars.outputs.MINIMAL_RUST }}
- stable
features:
- 'compute_naive'
- 'compute_naive,weights-runtime'
- 'compute_regular'
- 'compute_manualvec'
- 'compute_autovec'
- 'compute_block'
- 'compute_parallel'
# FIXME: Must get a working Vulkan impl in CI for this, and for some
# unknown reason llvmpipe doesn't cut it there even though it
# does in a local ubuntu:22.04 image... :(
# - 'compute_gpu_naive'
# - 'compute_gpu_specialized'
# - 'compute_gpu_specialized,gpu-debug-utils'
env:
FEATURES_FLAG: '--features=${{ matrix.features }}'
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install native dependencies
uses: awalsh128/cache-apt-pkgs-action@latest
with:
version: 1.0
packages: libhdf5-dev libhwloc-dev libudev-dev ninja-build vulkan-validationlayers-dev libvulkan-dev vulkan-tools
- name: Set up toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
- name: Run a tiny simulation job
run: cargo run ${{ env.FEATURES_FLAG }} --bin simulate -- -n 10
- name: Translate simulation output to images
run: mkdir out && cargo run ${{ env.FEATURES_FLAG }} --bin data-to-pics -- -o out
# Check benchmarks build on all supported Rust versions (main CI)
#
# FIXME: There should be a way to use conditional build matrices without
# duplicating the whole job recipe...
#
test-bench-build:
# Don't run CI twice when a PR is created from a branch internal to the repo
# Don't run in scheduled jobs, that's what test-scheduled is for
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
needs: matrix_vars
strategy:
matrix:
toolchain:
- ${{ needs.matrix_vars.outputs.MINIMAL_RUST }}
- stable
features:
- 'compute_naive'
- 'compute_naive,weights-runtime'
- 'compute_gpu_specialized,gpu-debug-utils'
env:
FEATURES_FLAG: '--features=${{ matrix.features }}'
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install native dependencies
uses: awalsh128/cache-apt-pkgs-action@latest
with:
version: 1.0
packages: libhdf5-dev libhwloc-dev libudev-dev ninja-build vulkan-validationlayers-dev libvulkan-dev vulkan-tools
- name: Set up toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
- name: Install cargo-criterion
uses: baptiste0928/cargo-install@v3
with:
crate: cargo-criterion
- name: Check that benchmarks build
run: cargo criterion --no-run ${{ env.FEATURES_FLAG }}
# Check compatibility with newer Rust/deps versions (scheduled CI)
#
# We aren't concerned about trashing the cargo cache here since these jobs
# only run occasionally, so the extra convenience and maintainability of
# grouping debug and release tests trumps other considerations.
#
# FIXME: There should be a way to use conditional build matrices without
# duplicating the whole job recipe...
#
test-scheduled:
if: github.event_name == 'schedule'
runs-on: ubuntu-latest
needs: matrix_vars
strategy:
matrix:
toolchain:
- beta
- nightly
- ${{ needs.matrix_vars.outputs.MINIMAL_RUST }}
features:
- 'compute_naive'
- 'compute_naive,weights-runtime'
- 'compute_regular'
- 'compute_manualvec'
- 'compute_autovec'
- 'compute_block'
- 'compute_parallel'
# FIXME: Must get a working Vulkan impl in CI for this, and for some
# unknown reason llvmpipe doesn't cut it there even though it
# does in a local ubuntu:22.04 image... :(
# - 'compute_gpu_naive'
# - 'compute_gpu_specialized'
# - 'compute_gpu_specialized,gpu-debug-utils'
env:
FEATURES_FLAG: '--features=${{ matrix.features }}'
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install native dependencies
uses: awalsh128/cache-apt-pkgs-action@latest
with:
version: 1.0
packages: libhdf5-dev libhwloc-dev libudev-dev ninja-build vulkan-validationlayers-dev libvulkan-dev vulkan-tools
- name: Set up toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
- name: Run unit tests
run: cargo test --workspace ${{ env.FEATURES_FLAG }}
- name: Run a tiny simulation job
run: cargo run --bin simulate ${{ env.FEATURES_FLAG }} -- -n 10
- name: Translate simulation output to images
run: mkdir out && cargo run --bin data-to-pics -- -o out
- name: Install cargo-criterion
uses: baptiste0928/cargo-install@v3
with:
crate: cargo-criterion
- name: Check that benchmarks build
run: cargo criterion --no-run