|
31 | 31 | with:
|
32 | 32 | target: ${{ inputs.target }}
|
33 | 33 | channel: ${{ inputs.channel }}
|
34 |
| - target-feature: ${{ format('CROSS_TARGET_{0}_RUSTFLAGS=+sse4.1,+aes', inputs.target-in-caps) |
| 34 | + target-feature: ${{ format('CROSS_TARGET_{0}_RUSTFLAGS=+sse4.1,+aes', inputs.target-in-caps) }} |
35 | 35 |
|
36 | 36 | test-aesni-vaes:
|
37 | 37 | if: contains(inputs.target, '86') && inputs.channel == 'nightly'
|
|
40 | 40 | with:
|
41 | 41 | target: ${{ inputs.target }}
|
42 | 42 | channel: nightly
|
43 |
| - target-feature: ${{ format('CROSS_TARGET_{0}_RUSTFLAGS=+vaes', inputs.target-in-caps) |
| 43 | + target-feature: ${{ format('CROSS_TARGET_{0}_RUSTFLAGS=+vaes', inputs.target-in-caps) }} |
44 | 44 |
|
45 | 45 | test-aesni-vaes-avx512f:
|
46 | 46 | if: contains(inputs.target, '86') && inputs.channel == 'nightly'
|
|
49 | 49 | with:
|
50 | 50 | target: ${{ inputs.target }}
|
51 | 51 | channel: nightly
|
52 |
| - target-feature: ${{ format('CROSS_TARGET_{0}_RUSTFLAGS=+vaes,+avx512f', inputs.target-in-caps) |
| 52 | + target-feature: ${{ format('CROSS_TARGET_{0}_RUSTFLAGS=+vaes,+avx512f', inputs.target-in-caps) }} |
53 | 53 |
|
54 | 54 | test-neon:
|
55 | 55 | if: startsWith(inputs.target, 'aarch64') || startsWith(inputs.target, 'arm64ec') || (startsWith(inputs.target, 'armv8') && inputs.channel == 'nightly')
|
|
58 | 58 | with:
|
59 | 59 | target: ${{ inputs.target }}
|
60 | 60 | channel: ${{ inputs.channel }}
|
61 |
| - target-feature: ${{ format('CROSS_TARGET_{0}_RUSTFLAGS=+aes', inputs.target-in-caps) |
| 61 | + target-feature: ${{ format('CROSS_TARGET_{0}_RUSTFLAGS=+aes', inputs.target-in-caps) }} |
62 | 62 |
|
63 | 63 | test-riscv:
|
64 | 64 | if: startsWith(inputs.target, 'riscv') && inputs.channel == 'nightly'
|
|
67 | 67 | with:
|
68 | 68 | target: ${{ inputs.target }}
|
69 | 69 | channel: nightly
|
70 |
| - target-feature: ${{ format('CROSS_TARGET_{0}_RUSTFLAGS=+zkne,+zknd', inputs.target-in-caps) |
| 70 | + target-feature: ${{ format('CROSS_TARGET_{0}_RUSTFLAGS=+zkne,+zknd', inputs.target-in-caps) }} |
0 commit comments