mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-25 03:26:24 +08: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:
committed by
Joost VandeVondele
parent
ca5d9a5ff0
commit
e87e103ca9
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"
|
||||
|
||||
Reference in New Issue
Block a user