Skip to content

Commit

Permalink
Fix aes and kuznyechik CI workflows
Browse files Browse the repository at this point in the history
Looks like they were broken in #284
  • Loading branch information
tarcieri committed Mar 17, 2022
1 parent 423945d commit fac0297
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/aes.yml
Expand Up @@ -3,6 +3,7 @@ name: aes
on:
pull_request:
paths:
- ".github/workflows/aes.yml"
- "aes/**"
- "Cargo.*"
push:
Expand Down Expand Up @@ -39,8 +40,8 @@ jobs:
override: true
- run: cargo check
- run: |
cargo build --target ${{ matrix.target }}
cargo build --target ${{ matrix.target }} --features hazmat
cargo build --target ${{ matrix.target }}
cargo build --target ${{ matrix.target }} --features hazmat
- env:
RUSTFLAGS: "-Dwarnings --cfg aes_force_soft"
run: |
Expand Down Expand Up @@ -205,8 +206,8 @@ jobs:
tar -C /tmp -xzf /tmp/binaries.tar.gz
mv /tmp/cross ~/.cargo/bin
- run: |
cross test --package aes --target ${{ matrix.target }}
cross test --package aes --target ${{ matrix.target }} --features hazmat
cross test --package aes --target ${{ matrix.target }}
cross test --package aes --target ${{ matrix.target }} --features hazmat
- env:
RUSTFLAGS: "-Dwarnings --cfg aes_force_soft"
run: |
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/kuznyechik.yml
Expand Up @@ -3,6 +3,7 @@ name: kuznyechik
on:
pull_request:
paths:
- ".github/workflows/kuznyechik.yml"
- "kuznyechik/**"
- "Cargo.*"
push:
Expand Down Expand Up @@ -62,8 +63,8 @@ jobs:
override: true
profile: minimal
- run: |
cargo test
cargo test --all-features
cargo test
cargo test --all-features
- env:
RUSTFLAGS: "-Dwarnings --cfg kuznyechik_force_soft"
run: |
Expand Down

0 comments on commit fac0297

Please sign in to comment.