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:
parent
ca5d9a5ff0
commit
e87e103ca9
1 changed files with 3 additions and 3 deletions
6
.github/workflows/stockfish_test.yml
vendored
6
.github/workflows/stockfish_test.yml
vendored
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue