Skip to content

Commit dcc749a

Browse files
committed
polyval: pin nightly version used for ARMv8 testing
The build is currently failing: https://github.com/RustCrypto/universal-hashes/runs/5629586918?check_suite_focus=true It's for two reasons: 1. `aarch64_target_feature` was recently stabilized in rust-lang/rust#90621 but we still include it 2. There's a bug releating to `neon`/`fp` activation. See rust-lang/rust#91608 and rust-lang/rust#95044 Until one of the fixes in the second issue is merged, we can't really make progress. So this commit pins to `nightly-2022-03-01` so we can continue to have a clean build. Once either of the above solutions lands we can remove `aarch64_target_feature` and unpin nightly again.
1 parent 625eefc commit dcc749a

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/ghash.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: ghash
33
on:
44
pull_request:
55
paths:
6+
- ".github/workflows/ghash.yml"
67
- "ghash/**"
78
- "Cargo.*"
89
push:

.github/workflows/poly1305.yml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: poly1305
33
on:
44
pull_request:
55
paths:
6+
- ".github/workflows/poly1305.yml"
67
- "poly1305/**"
78
- "Cargo.*"
89
push:

.github/workflows/polyval.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: polyval
33
on:
44
pull_request:
55
paths:
6+
- ".github/workflows/polyval.yml"
67
- "polyval/**"
78
- "Cargo.*"
89
push:
@@ -187,7 +188,7 @@ jobs:
187188
matrix:
188189
include:
189190
- target: aarch64-unknown-linux-gnu
190-
rust: nightly
191+
rust: nightly-2022-03-01
191192
runs-on: ubuntu-latest
192193
steps:
193194
- uses: actions/checkout@v1

0 commit comments

Comments
 (0)