Skip to content

Commit 48f73b7

Browse files
committed
fixing testing harness
1 parent 45e686d commit 48f73b7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/rust.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
with:
3232
target: ${{ inputs.target }}
3333
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) }}
3535

3636
test-aesni-vaes:
3737
if: contains(inputs.target, '86') && inputs.channel == 'nightly'
@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
target: ${{ inputs.target }}
4242
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) }}
4444

4545
test-aesni-vaes-avx512f:
4646
if: contains(inputs.target, '86') && inputs.channel == 'nightly'
@@ -49,7 +49,7 @@ jobs:
4949
with:
5050
target: ${{ inputs.target }}
5151
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) }}
5353

5454
test-neon:
5555
if: startsWith(inputs.target, 'aarch64') || startsWith(inputs.target, 'arm64ec') || (startsWith(inputs.target, 'armv8') && inputs.channel == 'nightly')
@@ -58,7 +58,7 @@ jobs:
5858
with:
5959
target: ${{ inputs.target }}
6060
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) }}
6262

6363
test-riscv:
6464
if: startsWith(inputs.target, 'riscv') && inputs.channel == 'nightly'
@@ -67,4 +67,4 @@ jobs:
6767
with:
6868
target: ${{ inputs.target }}
6969
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

Comments
 (0)