-
Notifications
You must be signed in to change notification settings - Fork 11
104 lines (96 loc) · 3.29 KB
/
rust.yml
File metadata and controls
104 lines (96 loc) · 3.29 KB
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
name: rust
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
on:
push:
tags:
- '*'
pull_request:
env:
RUST_BACKTRACE: 1
CARGO_TERM_COLOR: always
CARGO_NET_GIT_FETCH_WITH_CLI: true
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
jobs:
check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
command:
- cargo fmt --all -- --check
- cargo check --locked --all-targets
- cargo check --locked --target wasm32-unknown-unknown
- cargo clippy --locked --all-targets
- cargo clippy --locked --target wasm32-unknown-unknown
steps:
- uses: actions/checkout@v5
- uses: ./.github/actions/setup-and-cache-rust
with:
components: rustfmt, clippy
target: wasm32-unknown-unknown
- run: ${{ matrix.command }}
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: ./.github/actions/setup-and-cache-rust
- uses: taiki-e/install-action@nextest
- name: "test corecrypto"
run: cargo nextest run --verbose --locked
- name: "test corecrypto documentation"
run: cargo test --doc --locked
- name: "upload test results"
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v2
with:
files: target/nextest/default/junit.xml
proteus-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: ./.github/actions/setup-and-cache-rust
- uses: taiki-e/install-action@nextest
- name: "test corecrypto's proteus implementation"
run: cargo nextest run --locked --verbose --features proteus,proteus-keystore proteus
wasm-test:
runs-on: ubuntu-latest
env:
WASM_BINDGEN_TEST_TIMEOUT: "1200" # if our test takes over 20m, it probably _should_ fail
strategy:
matrix:
config:
- crate: keystore
- crate: mls-provider
- crate: keystore
feature: --features proteus-keystore
module: -- proteus
steps:
- uses: actions/checkout@v5
- uses: ./.github/actions/setup-and-cache-rust
with:
target: wasm32-unknown-unknown
- uses: wireapp/setup-chrome@master
id: setup-chrome
with:
chrome-version: stable
- run: echo "CHROME_PATH=${{ steps.setup-chrome.outputs.chrome-path }}" >> $GITHUB_ENV
- name: install wasm-pack
uses: taiki-e/install-action@v2
with:
tool: wasm-pack
- run: wasm-pack test --headless --chrome ./${{ matrix.config.crate }} ${{ matrix.config.feature }} ${{ matrix.config.module }}
hack:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: ./.github/actions/setup-and-cache-rust
# Per default, we're using "-D warnings" for rustflags. However, it's a lot of (unnecessary) effort to fix all "unused import"
# issue for every possible feature set, that's why we don't want to fail on warnings here. For this, we're passing
# an empty set of rustflags.
with:
rustflags: ''
- uses: taiki-e/install-action@cargo-hack
- name: cargo/hack (verify features compile in isolation)
run: cargo hack check --each-feature --no-dev-deps