Skip to content

Commit e5a0b54

Browse files
committed
fixing testing harness
1 parent bc1b324 commit e5a0b54

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/runtest.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,19 @@ jobs:
3434
uses: actions-rs/cargo@v1
3535
with:
3636
command: clippy
37-
args: --target ${{ inputs.target }} ${{ inputs.channel == 'nightly' && '--features=nightly' || '' }}
37+
args: +${{ inputs.channel }} --target ${{ inputs.target }} ${{ inputs.channel == 'nightly' && '--features=nightly' || '' }}
3838

3939
- name: Build
4040
uses: actions-rs/cargo@v1
4141
with:
4242
use-cross: true
4343
command: build
44-
args: --target ${{ inputs.target }} ${{ inputs.channel == 'nightly' && '--features=nightly' || '' }}
44+
args: +${{ inputs.channel }} --target ${{ inputs.target }} ${{ inputs.channel == 'nightly' && '--features=nightly' || '' }}
4545

4646
- name: Test
4747
uses: actions-rs/cargo@v1
4848
with:
4949
use-cross: true
5050
command: test
51-
args: --target ${{ inputs.target }} ${{ inputs.channel == 'nightly' && '--features=nightly' || '' }}
51+
args: +${{ inputs.channel }} --target ${{ inputs.target }} ${{ inputs.channel == 'nightly' && '--features=nightly' || '' }}
5252

.github/workflows/rust.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
uses: ./.github/workflows/runtest.yml
4040
with:
4141
target: ${{ inputs.target }}
42-
channel: 'nightly'
42+
channel: ${{ inputs.channel }}
4343
target-feature: ${{ format('CROSS_TARGET_{0}_RUSTFLAGS=+vaes', inputs.target-in-caps) }}
4444

4545
test-aesni-vaes-avx512f:
@@ -48,7 +48,7 @@ jobs:
4848
uses: ./.github/workflows/runtest.yml
4949
with:
5050
target: ${{ inputs.target }}
51-
channel: 'nightly'
51+
channel: ${{ inputs.channel }}
5252
target-feature: ${{ format('CROSS_TARGET_{0}_RUSTFLAGS=+vaes,+avx512f', inputs.target-in-caps) }}
5353

5454
test-neon:
@@ -66,5 +66,5 @@ jobs:
6666
uses: ./.github/workflows/runtest.yml
6767
with:
6868
target: ${{ inputs.target }}
69-
channel: 'nightly'
69+
channel: ${{ inputs.channel }}
7070
target-feature: ${{ format('CROSS_TARGET_{0}_RUSTFLAGS=+zkne,+zknd', inputs.target-in-caps) }}

0 commit comments

Comments
 (0)