1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-30 00:33:09 +00:00

Remove leftover braces for if conditional in CI

closes https://github.com/official-stockfish/Stockfish/pull/4660

No functional change
This commit is contained in:
ppigazzini 2023-07-03 19:41:13 +02:00 committed by Joost VandeVondele
parent ca5d9a5ff0
commit e87e103ca9

View file

@ -237,7 +237,7 @@ jobs:
# armv8 tests
- name: Test armv8 build
if: ${{ matrix.config.run_armv8_tests }}
if: matrix.config.run_armv8_tests
run: |
export PATH=${{ env.ANDROID_NDK_BIN }}:$PATH
export LDFLAGS="-static -Wno-unused-command-line-argument"
@ -248,7 +248,7 @@ jobs:
# armv7 tests
- name: Test armv7 build
if: ${{ matrix.config.run_armv7_tests }}
if: matrix.config.run_armv7_tests
run: |
export PATH=${{ env.ANDROID_NDK_BIN }}:$PATH
export LDFLAGS="-static -Wno-unused-command-line-argument"
@ -257,7 +257,7 @@ jobs:
../tests/signature.sh $benchref
- name: Test armv7-neon build
if: ${{ matrix.config.run_armv7_tests }}
if: matrix.config.run_armv7_tests
run: |
export PATH=${{ env.ANDROID_NDK_BIN }}:$PATH
export LDFLAGS="-static -Wno-unused-command-line-argument"