-
Notifications
You must be signed in to change notification settings - Fork 18
75 lines (68 loc) · 2 KB
/
frodo-kem.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
name: frodo-kem
on:
pull_request:
paths:
- ".github/workflows/frodo-kem.yml"
- "frodo-kem/**"
- "Cargo.*"
push:
branches: master
env:
CARGO_INCREMENTAL: 0
CARGO_TERM_COLOR: always
RUST_LOG_STYLE: always
RUSTFLAGS: "-Dwarnings"
RUSTDOCFLAGS: "-Dwarnings"
defaults:
run:
working-directory: frodo-kem
shell: bash
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- run: cargo build --no-default-features --features=frodo
- run: cargo build --no-default-features --features=efrodo
- run: cargo build --no-default-features || [ $? -eq 101 ]
- run: cargo build --all-features
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- run: cargo build --all-features --benches --release --keep-going
- run: cargo test --all-features --release
- run: cargo test --no-default-features --features=frodo,efrodo,serde --release
careful:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- run: cargo install cargo-careful
- run: cargo careful test tests
- run: cargo careful test test_vector --release
# TODO(tarcieri): needs `set-msrv`
# cross:
# needs: set-msrv
# strategy:
# matrix:
# include:
# - target: powerpc-unknown-linux-gnu
# rust: ${{needs.set-msrv.outputs.msrv}}
# - target: powerpc-unknown-linux-gnu
# rust: stable
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: dtolnay/rust-toolchain@master
# with:
# toolchain: ${{ matrix.rust }}
# targets: ${{ matrix.target }}
# - uses: RustCrypto/actions/cross-install@master
# - run: cross test --release --target ${{ matrix.target }} --all-features