Skip to content

Commit e87e103

Browse files
ppigazzinivondele
authored andcommitted
Remove leftover braces for if conditional in CI
closes official-stockfish#4660 No functional change
1 parent ca5d9a5 commit e87e103

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/stockfish_test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ jobs:
237237
# armv8 tests
238238

239239
- name: Test armv8 build
240-
if: ${{ matrix.config.run_armv8_tests }}
240+
if: matrix.config.run_armv8_tests
241241
run: |
242242
export PATH=${{ env.ANDROID_NDK_BIN }}:$PATH
243243
export LDFLAGS="-static -Wno-unused-command-line-argument"
@@ -248,7 +248,7 @@ jobs:
248248
# armv7 tests
249249

250250
- name: Test armv7 build
251-
if: ${{ matrix.config.run_armv7_tests }}
251+
if: matrix.config.run_armv7_tests
252252
run: |
253253
export PATH=${{ env.ANDROID_NDK_BIN }}:$PATH
254254
export LDFLAGS="-static -Wno-unused-command-line-argument"
@@ -257,7 +257,7 @@ jobs:
257257
../tests/signature.sh $benchref
258258
259259
- name: Test armv7-neon build
260-
if: ${{ matrix.config.run_armv7_tests }}
260+
if: matrix.config.run_armv7_tests
261261
run: |
262262
export PATH=${{ env.ANDROID_NDK_BIN }}:$PATH
263263
export LDFLAGS="-static -Wno-unused-command-line-argument"

0 commit comments

Comments
 (0)