-
Notifications
You must be signed in to change notification settings - Fork 192
212 lines (168 loc) · 5.69 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
name: Continuous integration
env:
VERSION_FEATURES: "v1 v3 v4 v5 v6 v7 v8"
DEP_FEATURES: "slog serde arbitrary borsh zerocopy bytemuck"
on:
pull_request:
push:
branches:
- main
schedule:
- cron: '0 0 * * *'
jobs:
os_tests:
name: "Tests / OS: ${{ matrix.os }} - ${{ matrix.channel }}-${{ matrix.rust_target }}"
runs-on: ${{ matrix.os }}
env:
RUSTFLAGS: "--cfg uuid_unstable"
RUSTDOCFLAGS: "--cfg uuid_unstable"
strategy:
matrix:
exclude:
- os: macos-latest
rust_target: x86_64-gnu
- os: macos-latest
rust_target: x86_64-msvc
- os: windows-latest
rust_target: x86_64-apple-darwin
- os: ubuntu-latest
rust_target: x86_64-msvc
- os: ubuntu-latest
rust_target: x86_64-apple-darwin
channel:
- stable
- beta
- nightly
os:
- macos-latest
- ubuntu-latest
- windows-latest
rust_target:
- x86_64-gnu
- x86_64-msvc
- x86_64-apple-darwin
steps:
- name: Checkout repository
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- name: Install Rust Toolchain
run: rustup default ${{ matrix.channel }}-${{ matrix.rust_target }}
- name: Install cargo-hack
run: cargo install cargo-hack
- name: Docs
run: cargo test --all-features --doc
- name: Examples
run: cargo test --all-features --examples
- name: Each version feature
run: cargo hack test --lib --each-feature
- name: All features
run: cargo hack test --lib --all-features
stable:
name: Tests / Stable
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- name: All features
run: cargo test --all-features
msrv:
name: Build / MSRV
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- name: Install Rust toolchain
run: rustup update 1.60.0
- name: Version features
run: cargo +1.60.0 build --manifest-path tests/smoke-test/Cargo.toml
examples:
name: Tests / Examples
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- name: Examples
run: cargo test --manifest-path examples/Cargo.toml
wasm_bindgen:
name: Tests / WebAssembly (wasm-bindgen)
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- name: Install
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: Default features
run: wasm-pack test --node
- name: Version features
run: wasm-pack test --node -- --features "$VERSION_FEATURES $DEP_FEATURES js"
- name: Fast RNG
run: wasm-pack test --node -- --features "js v4 fast-rng"
wasi:
name: Tests / WebAssembly (WASI)
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- name: Install Wasmtime
run: curl https://wasmtime.dev/install.sh -sSf | bash
- name: Add Wasmtime to path
run: echo "$HOME/.wasmtime/bin" >> $GITHUB_PATH
- name: Install wasm32-wasi target
run: rustup target add wasm32-wasi
- name: Default features
run: cargo test --target wasm32-wasi
- name: Version features
run: cargo test --target wasm32-wasi --features "$VERSION_FEATURES $DEP_FEATURES"
- name: Fast RNG
run: cargo test --target wasm32-wasi --features "v4 fast-rng"
miri:
name: Tests / Miri
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- name: Install Miri
run: |
rustup toolchain install nightly --component miri
cargo +nightly miri setup
- name: Default features
run: cargo +nightly miri test --lib --all-features
- name: BE
run: cargo +nightly miri test --target s390x-unknown-linux-gnu --lib --all-features
clippy:
name: Build / Clippy
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- name: Install Clippy
run: |
rustup update beta
rustup component add clippy --toolchain beta
- name: Default features
run: cargo +beta clippy --all-features
embedded:
name: Build / Embedded
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- name: Install Rust toolchain
run: rustup update nightly && rustup target add --toolchain nightly thumbv6m-none-eabi
- name: No features
run: cargo +nightly build -Z avoid-dev-deps --target thumbv6m-none-eabi --no-default-features
- name: Version features
run: cargo +nightly build -Z avoid-dev-deps --target thumbv6m-none-eabi --no-default-features --features "v1 v3 v5 v6 serde"
nodeps:
name: Build / No deps
runs-on: ubuntu-latest
env:
RUSTFLAGS: "--cfg uuid_unstable"
steps:
- name: Checkout sources
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- name: Install Rust toolchain
run: rustup update nightly && rustup default nightly
- name: Install cargo-hack
run: cargo install cargo-hack
- name: Powerset
run: cargo hack check --each-feature -Z avoid-dev-deps