|
24 | 24 | channel: ${{ inputs.channel }}
|
25 | 25 |
|
26 | 26 | test-aesni:
|
27 |
| - # simple test for x86(64) |
28 |
| - if: contains(inputs.target, '86') |
| 27 | + if: ${{ contains(inputs.target, '86') }} |
29 | 28 | name: Test of AESNI on ${{ inputs.target }}
|
30 | 29 | uses: ./.github/workflows/runtest.yml
|
31 | 30 | with:
|
|
34 | 33 | target-feature: ${{ format('CROSS_TARGET_{0}_RUSTFLAGS=+sse4.1,+aes', inputs.target-in-caps) }}
|
35 | 34 |
|
36 | 35 | test-aesni-vaes:
|
37 |
| - if: contains(inputs.target, '86') && inputs.channel == 'nightly' |
| 36 | + if: ${{ contains(inputs.target, '86') && inputs.channel == 'nightly' }} |
38 | 37 | name: Test of AESNI with VAES on ${{ inputs.target }}
|
39 | 38 | uses: ./.github/workflows/runtest.yml
|
40 | 39 | with:
|
|
43 | 42 | target-feature: ${{ format('CROSS_TARGET_{0}_RUSTFLAGS=+vaes', inputs.target-in-caps) }}
|
44 | 43 |
|
45 | 44 | test-aesni-vaes-avx512f:
|
46 |
| - if: contains(inputs.target, '86') && inputs.channel == 'nightly' |
| 45 | + if: ${{ contains(inputs.target, '86') && inputs.channel == 'nightly' }} |
47 | 46 | name: Test of AESNI with VAES and AVX-512 on ${{ inputs.target }}
|
48 | 47 | uses: ./.github/workflows/runtest.yml
|
49 | 48 | with:
|
|
52 | 51 | target-feature: ${{ format('CROSS_TARGET_{0}_RUSTFLAGS=+vaes,+avx512f', inputs.target-in-caps) }}
|
53 | 52 |
|
54 | 53 | test-neon:
|
55 |
| - if: startsWith(inputs.target, 'aarch64') || startsWith(inputs.target, 'arm64ec') || (startsWith(inputs.target, 'armv8') && inputs.channel == 'nightly') |
| 54 | + if: ${{ startsWith(inputs.target, 'aarch64') || startsWith(inputs.target, 'arm64ec') || (startsWith(inputs.target, 'armv8') && inputs.channel == 'nightly') }} |
56 | 55 | name: Test of Neon on ${{ inputs.target }}
|
57 | 56 | uses: ./.github/workflows/runtest.yml
|
58 | 57 | with:
|
|
61 | 60 | target-feature: ${{ format('CROSS_TARGET_{0}_RUSTFLAGS=+aes', inputs.target-in-caps) }}
|
62 | 61 |
|
63 | 62 | test-riscv:
|
64 |
| - if: startsWith(inputs.target, 'riscv') && inputs.channel == 'nightly' |
| 63 | + if: ${{ startsWith(inputs.target, 'riscv') && inputs.channel == 'nightly' }} |
65 | 64 | name: Test of Neon on ${{ inputs.target }}
|
66 | 65 | uses: ./.github/workflows/runtest.yml
|
67 | 66 | with:
|
|
0 commit comments