]> git.sesse.net Git - stockfish/commitdiff
Remove leftover braces for if conditional in CI
authorppigazzini <pasquale.pigazzini@gmail.com>
Mon, 3 Jul 2023 17:41:13 +0000 (19:41 +0200)
committerJoost VandeVondele <Joost.VandeVondele@gmail.com>
Mon, 3 Jul 2023 18:17:14 +0000 (20:17 +0200)
closes https://github.com/official-stockfish/Stockfish/pull/4660

No functional change

.github/workflows/stockfish_test.yml

index 1ea4b309235b3133b93b9ae53915d0313b1342bd..b53d7e275d0534b860cc043c6917157f2a53688c 100644 (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"