From: ppigazzini Date: Mon, 3 Jul 2023 17:41:13 +0000 (+0200) Subject: Remove leftover braces for if conditional in CI X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=e87e103ca994570d42f30f61f923986656a5df14;p=stockfish Remove leftover braces for if conditional in CI closes https://github.com/official-stockfish/Stockfish/pull/4660 No functional change --- diff --git a/.github/workflows/stockfish_test.yml b/.github/workflows/stockfish_test.yml index 1ea4b309..b53d7e27 100644 --- a/.github/workflows/stockfish_test.yml +++ b/.github/workflows/stockfish_test.yml @@ -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"