Skip to content

Commit

Permalink
Remove leftover braces for if conditional in CI
Browse files Browse the repository at this point in the history
closes official-stockfish#4660

No functional change
  • Loading branch information
ppigazzini authored and vondele committed Jul 3, 2023
1 parent ca5d9a5 commit e87e103
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/stockfish_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand All @@ -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"
Expand Down

0 comments on commit e87e103

Please sign in to comment.