-
Notifications
You must be signed in to change notification settings - Fork 6
244 lines (227 loc) · 7.72 KB
/
rust.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
name: Rust compile & test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on: [push]
env:
RUST_BACKTRACE: 1
CARGO_TERM_COLOR: always
CARGO_NET_GIT_FETCH_WITH_CLI: true
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt
rustflags: ''
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- run: cargo fmt --all -- --check
check-strict:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
rustflags: ''
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- run: cargo check --tests
- run: cargo check --benches
- run: cargo doc --all --no-deps
env:
RUSTFLAGS: "-D warnings -W unreachable-pub"
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
rustflags: ''
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- run: cargo check --tests
- run: cargo check --benches
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
rustflags: ''
components: clippy
target: wasm32-unknown-unknown
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- run: cargo build --verbose
- run: cargo clippy -- -D warnings
- run: cargo clippy --target wasm32-unknown-unknown -- -D warnings
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
rustflags: ''
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- uses: taiki-e/install-action@nextest
- name: "Test CoreCrypto"
run: cargo nextest run --verbose
- name: "Test CoreCrypto documentation"
run: cargo test --doc
- name: "Test Keystore regressions"
run: |
cd extras/keystore-regression-versions
cargo run
proteus-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
rustflags: ''
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- uses: taiki-e/install-action@nextest
- name: "Test CoreCrypto's proteus implementation"
run: cargo nextest run --verbose --features proteus,cryptobox-migrate,proteus-keystore proteus
# extract things unrelated to main tests not to slow them down
tooling-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
rustflags: ''
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- uses: taiki-e/install-action@nextest
- name: "Test CoreCrypto xtask tooling"
run: cargo nextest run --verbose --manifest-path xtask/Cargo.toml
- name: "Test CoreCrypto benchmarks"
run: sh crypto/benches/scripts/test.sh
wasm-build:
runs-on: ubuntu-latest
strategy:
matrix:
workspace: [ "crypto", "keystore", "mls-provider" ]
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
target: wasm32-unknown-unknown
rustflags: ''
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: WASM check
run: cargo check --tests --target wasm32-unknown-unknown
- name: WASM build
run: wasm-pack build --dev --target web ${{ matrix.workspace }}
wasm-test:
runs-on: ubuntu-latest
strategy:
matrix:
workspace: ["core-crypto-keystore", "mls-crypto-provider"]
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
target: wasm32-unknown-unknown
rustflags: ''
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- uses: browser-actions/setup-chrome@latest
id: setup-chrome
with:
chrome-version: stable
- run: |
echo "CHROME_PATH=${{ steps.setup-chrome.outputs.chrome-path }}" >> $GITHUB_ENV
- name: Run tests (wasm)
run: cargo test --target wasm32-unknown-unknown -p ${{ matrix.workspace }}
# TODO: pending a proper solution to fix the size limit for WASM tests
wasm-core-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
target: wasm32-unknown-unknown
rustflags: ''
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- uses: browser-actions/setup-chrome@latest
id: setup-chrome
with:
chrome-version: stable
- run: |
echo "CHROME_PATH=${{ steps.setup-chrome.outputs.chrome-path }}" >> $GITHUB_ENV
- name: Run core tests (wasm)
run: sh crypto-ffi/bindings/js/test/wasm-tests.sh
proteus-wasm-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
target: wasm32-unknown-unknown
rustflags: ''
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- uses: browser-actions/setup-chrome@latest
id: setup-chrome
with:
chrome-version: stable
- run: |
echo "CHROME_PATH=${{ steps.setup-chrome.outputs.chrome-path }}" >> $GITHUB_ENV
- name: Run tests (wasm)
run: |
cargo test --features "proteus-keystore" --target wasm32-unknown-unknown -p core-crypto-keystore proteus
cargo test --features "proteus,cryptobox-migrate" --target wasm32-unknown-unknown -p core-crypto proteus
e2e-interop-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
target: wasm32-unknown-unknown
rustflags: ''
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- name: Setup cargo-make
uses: davidB/rust-cargo-make@v1
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- uses: browser-actions/setup-chrome@latest
id: setup-chrome
with:
chrome-version: stable
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- uses: actions/setup-node@v4
with:
node-version: 18
- run: |
echo "CHROME_PATH=${{ steps.setup-chrome.outputs.chrome-path }}" >> $GITHUB_ENV
- name: Run E2E interop test
run: cargo run --bin interop
hack:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
rustflags: ''
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- uses: taiki-e/install-action@cargo-hack
- name: cargo/hack (verify features compile in isolation)
run: cargo hack check --each-feature --exclude-features uniffi --no-dev-deps