Commit 8273c36 1 parent 105f93a commit 8273c36 Copy full SHA for 8273c36
File tree 6 files changed +7
-11
lines changed
6 files changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,11 @@ jobs:
17
17
18
18
test-neon :
19
19
strategy :
20
- fail-fast : false
21
20
matrix :
22
21
channel : [ stable, beta, nightly ]
23
22
name : Test of Neon on ${{ inputs.target }} with ${{ matrix.channel }}
24
23
uses : ./.github/workflows/runtest.yml
25
24
with :
26
25
target : ${{ inputs.target }}
27
26
channel : ${{ matrix.channel }}
28
- env-vars : ${{ format('CROSS_TARGET_ {0}_RUSTFLAGS=+aes', inputs.target-in-caps) }}
27
+ env-vars : ${{ format('CARGO_TARGET_ {0}_RUSTFLAGS=-C target-feature =+aes', inputs.target-in-caps) }}
Original file line number Diff line number Diff line change 21
21
with :
22
22
target : ${{ inputs.target }}
23
23
channel : nightly
24
- env-vars : ${{ format('CROSS_TARGET_ {0}_RUSTFLAGS=+v8,+aes', inputs.target-in-caps) }}
24
+ env-vars : ${{ format('CARGO_TARGET_ {0}_RUSTFLAGS=-C target-feature =+v8,+aes', inputs.target-in-caps) }}
Original file line number Diff line number Diff line change 9
9
jobs :
10
10
test-software :
11
11
strategy :
12
- fail-fast : false
13
12
matrix :
14
13
channel : [ stable, beta, nightly ]
15
14
name : Test of Software AES on ${{ inputs.target }} with ${{ matrix.channel }}
Original file line number Diff line number Diff line change 21
21
with :
22
22
target : ${{ inputs.target }}
23
23
channel : nightly
24
- env-vars : ${{ format('CROSS_TARGET_ {0}_RUSTFLAGS=+zkne,+zknd', inputs.target-in-caps) }}
24
+ env-vars : ${{ format('CARGO_TARGET_ {0}_RUSTFLAGS=-C target-feature =+zkne,+zknd', inputs.target-in-caps) }}
Original file line number Diff line number Diff line change @@ -20,13 +20,12 @@ jobs:
20
20
steps :
21
21
- uses : actions/checkout@v3
22
22
23
- - run : ${{ format('echo "{0}" >> $GITHUB_ENV', inputs.env-vars) }}
23
+ - run : ${{ format('echo "{0} -C panic=abort " >> $GITHUB_ENV', inputs.env-vars) }}
24
24
25
25
- name : Install Rust
26
26
uses : actions-rs/toolchain@v1
27
27
with :
28
28
toolchain : ${{ inputs.channel }}
29
- target : ${{ inputs.target }}
30
29
profile : minimal
31
30
components : clippy
32
31
override : true
Original file line number Diff line number Diff line change @@ -17,28 +17,27 @@ jobs:
17
17
18
18
test-aesni :
19
19
strategy :
20
- fail-fast : false
21
20
matrix :
22
21
channel : [ stable, beta, nightly ]
23
22
name : Test of AESNI on ${{ inputs.target }} with ${{ matrix.channel }}
24
23
uses : ./.github/workflows/runtest.yml
25
24
with :
26
25
target : ${{ inputs.target }}
27
26
channel : ${{ matrix.channel }}
28
- env-vars : ${{ format('CROSS_TARGET_ {0}_RUSTFLAGS=+sse4.1,+aes', inputs.target-in-caps) }}
27
+ env-vars : ${{ format('CARGO_TARGET_ {0}_RUSTFLAGS=-C target-feature =+sse4.1,+aes', inputs.target-in-caps) }}
29
28
30
29
test-aesni-vaes :
31
30
name : Test of AESNI with VAES on ${{ inputs.target }}
32
31
uses : ./.github/workflows/runtest.yml
33
32
with :
34
33
target : ${{ inputs.target }}
35
34
channel : nightly
36
- env-vars : ${{ format('CROSS_TARGET_ {0}_RUSTFLAGS=+vaes', inputs.target-in-caps) }}
35
+ env-vars : ${{ format('CARGO_TARGET_ {0}_RUSTFLAGS=-C target-feature =+vaes', inputs.target-in-caps) }}
37
36
38
37
test-aesni-vaes-avx512f :
39
38
name : Test of AESNI with VAES and AVX-512 on ${{ inputs.target }}
40
39
uses : ./.github/workflows/runtest.yml
41
40
with :
42
41
target : ${{ inputs.target }}
43
42
channel : nightly
44
- env-vars : ${{ format('CROSS_TARGET_ {0}_RUSTFLAGS=+vaes,+avx512f', inputs.target-in-caps) }}
43
+ env-vars : ${{ format('CARGO_TARGET_ {0}_RUSTFLAGS=-C target-feature =+vaes,+avx512f', inputs.target-in-caps) }}
You can’t perform that action at this time.
0 commit comments