Skip to content

Commit

Permalink
keccak: fix build (#13)
Browse files Browse the repository at this point in the history
`packed_simd_2` no longer builds on nightly:

rust-lang/packed_simd#343

This commit pins the nightly version for now, and disables the
`minimal-versions` check since it's not customizable and requires the
latest nightly.
  • Loading branch information
tarcieri authored May 24, 2022
1 parent 2736330 commit e29a53e
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/keccak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,12 @@ jobs:
override: true
- run: cargo build --no-default-features --target ${{ matrix.target }}

minimal-versions:
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
with:
working-directory: ${{ github.workflow }}
# TODO(tarcieri): fix issues with `packed_simd_2`
# See: https://github.com/RustCrypto/sponges/runs/6581411295?check_suite_focus=true
#minimal-versions:
# uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
# with:
# working-directory: ${{ github.workflow }}

test:
needs: set-msrv
Expand Down Expand Up @@ -81,7 +83,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
toolchain: nightly-2022-04-01
override: true
- run: cargo check --features simd
- run: cargo test --features simd
Expand Down

0 comments on commit e29a53e

Please sign in to comment.