Commit e5a0b54 1 parent bc1b324 commit e5a0b54 Copy full SHA for e5a0b54
File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -34,19 +34,19 @@ jobs:
34
34
uses : actions-rs/cargo@v1
35
35
with :
36
36
command : clippy
37
- args : --target ${{ inputs.target }} ${{ inputs.channel == 'nightly' && '--features=nightly' || '' }}
37
+ args : +${{ inputs.channel }} --target ${{ inputs.target }} ${{ inputs.channel == 'nightly' && '--features=nightly' || '' }}
38
38
39
39
- name : Build
40
40
uses : actions-rs/cargo@v1
41
41
with :
42
42
use-cross : true
43
43
command : build
44
- args : --target ${{ inputs.target }} ${{ inputs.channel == 'nightly' && '--features=nightly' || '' }}
44
+ args : +${{ inputs.channel }} --target ${{ inputs.target }} ${{ inputs.channel == 'nightly' && '--features=nightly' || '' }}
45
45
46
46
- name : Test
47
47
uses : actions-rs/cargo@v1
48
48
with :
49
49
use-cross : true
50
50
command : test
51
- args : --target ${{ inputs.target }} ${{ inputs.channel == 'nightly' && '--features=nightly' || '' }}
51
+ args : +${{ inputs.channel }} --target ${{ inputs.target }} ${{ inputs.channel == 'nightly' && '--features=nightly' || '' }}
52
52
Original file line number Diff line number Diff line change 39
39
uses : ./.github/workflows/runtest.yml
40
40
with :
41
41
target : ${{ inputs.target }}
42
- channel : ' nightly '
42
+ channel : ${{ inputs.channel }}
43
43
target-feature : ${{ format('CROSS_TARGET_{0}_RUSTFLAGS=+vaes', inputs.target-in-caps) }}
44
44
45
45
test-aesni-vaes-avx512f :
48
48
uses : ./.github/workflows/runtest.yml
49
49
with :
50
50
target : ${{ inputs.target }}
51
- channel : ' nightly '
51
+ channel : ${{ inputs.channel }}
52
52
target-feature : ${{ format('CROSS_TARGET_{0}_RUSTFLAGS=+vaes,+avx512f', inputs.target-in-caps) }}
53
53
54
54
test-neon :
66
66
uses : ./.github/workflows/runtest.yml
67
67
with :
68
68
target : ${{ inputs.target }}
69
- channel : ' nightly '
69
+ channel : ${{ inputs.channel }}
70
70
target-feature : ${{ format('CROSS_TARGET_{0}_RUSTFLAGS=+zkne,+zknd', inputs.target-in-caps) }}
You can’t perform that action at this time.
0 commit comments