-
Notifications
You must be signed in to change notification settings - Fork 2
286 lines (245 loc) · 7.22 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
name: CI
on:
push:
branches:
- main
- v0.1.x
- v0.2.x
- v0.3.x
- v0.4.x
- v0.5.x
pull_request:
branches:
- main
- v0.1.x
- v0.2.x
- v0.3.x
- v0.4.x
- v0.5.x
schedule:
- cron: "58 7 * * 3"
jobs:
fmt:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Rust
uses: ./.github/actions/setup-rust
with:
toolchain: nightly
components: rustfmt
- run: cargo fmt --all -- --check
lint:
strategy:
fail-fast: false
matrix:
toolchain:
- "1.56"
- stable
- nightly
versions:
- ""
- "-Zminimal-versions"
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Rust
uses: ./.github/actions/setup-rust
with:
toolchain: ${{ matrix.toolchain }}
components: clippy
- name: Update lockfile
env:
RUSTC_BOOTSTRAP: 1
run: cargo generate-lockfile ${{ matrix.versions }}
- run: cargo check --package [email protected] --all-targets
- run: cargo clippy --package [email protected] --all-targets -- -D warnings
clippy-pedantic:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Rust
uses: ./.github/actions/setup-rust
with:
components: clippy
- run: cargo clippy --package [email protected] --all-targets -- -D clippy::pedantic
test:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Rust
uses: ./.github/actions/setup-rust
with:
components: clippy
- run: cargo check --package [email protected] --all-targets
- run: cargo clippy --package [email protected] --all-targets -- -D warnings
- run: cargo test --package [email protected] --all-targets
- run: cargo run --package current-time
- run: cd testing && cargo test
miri:
name: "Miri"
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Rust
uses: ./.github/actions/setup-rust
with:
toolchain: nightly
components: miri
- name: Test (tzdb)
run: cargo miri test --package [email protected] --all-targets
- name: Test (testing)
run: cd testing && cargo miri test --package [email protected] --all-targets
cross-miri:
strategy:
fail-fast: false
matrix:
target:
- aarch64-unknown-linux-gnu
- i586-unknown-linux-gnu
- powerpc-unknown-linux-gnu
- powerpc64-unknown-linux-gnu
- powerpc64le-unknown-linux-gnu
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Rust
uses: ./.github/actions/setup-rust
with:
toolchain: nightly
components: miri
target: ${{ matrix.target }}
- name: Test
run: cargo miri test --package [email protected] --target ${{ matrix.target }}
doc:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Rust
uses: ./.github/actions/setup-rust
with:
toolchain: nightly
components: rust-docs
- run: cargo doc --package [email protected] --all-features --no-deps
env:
RUSTDOCFLAGS: -D warnings --cfg docsrs
audit:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Rust
uses: ./.github/actions/setup-rust
- name: Audit
uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
build-cross:
strategy:
fail-fast: false
matrix:
target:
- x86_64-unknown-freebsd
- x86_64-unknown-illumos
- x86_64-unknown-netbsd
- x86_64-linux-android
- i686-linux-android
- arm-linux-androideabi
- aarch64-linux-android
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Rust
uses: ./.github/actions/setup-rust
with:
toolchain: stable
target: ${{ matrix.target }}
components: clippy
- name: Install "cross"
run: curl --location --silent --show-error --fail https://github.com/cargo-bins/cargo-quickinstall/releases/download/cross-0.2.5-x86_64-unknown-linux-gnu/cross-0.2.5-x86_64-unknown-linux-gnu.tar.gz | tar -xzvvf - -C $HOME/.cargo/bin
- run: cross check --target ${{ matrix.target }} --package [email protected] --all-targets
- run: cross clippy --target ${{ matrix.target }} --package [email protected] --all-targets -- -D warnings
- run: cross build --target ${{ matrix.target }} --package [email protected] --lib
- run: cross build --target ${{ matrix.target }} --examples
build-cross-ios:
strategy:
fail-fast: false
matrix:
target:
- aarch64-apple-ios-sim
- aarch64-apple-ios
- x86_64-apple-ios
runs-on: macos-12
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Rust
uses: ./.github/actions/setup-rust
with:
toolchain: stable
target: ${{ matrix.target }}
components: clippy
- name: Install "cross"
run: curl --location --silent --show-error --fail https://github.com/cargo-bins/cargo-quickinstall/releases/download/cross-0.2.5-x86_64-apple-darwin/cross-0.2.5-x86_64-apple-darwin.tar.gz | tar -xzvvf - -C $HOME/.cargo/bin
- run: cross check --target ${{ matrix.target }} --package [email protected] --all-targets
- run: cross clippy --target ${{ matrix.target }} --package [email protected] --all-targets -- -D warnings
- run: cross build --target ${{ matrix.target }} --package [email protected] --lib
- run: cross build --target ${{ matrix.target }} --examples
package:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Rust
uses: ./.github/actions/setup-rust
with:
toolchain: stable
- run: cargo package --package [email protected]
devskim:
name: DevSkim
runs-on: ubuntu-20.04
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Run DevSkim scanner
uses: microsoft/DevSkim-Action@v1
- name: Upload DevSkim scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: devskim-results.sarif