From 737b5207e12bb12a270fa1a385048fcf55617e43 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Sun, 20 Aug 2023 21:33:33 +0200 Subject: Specify "shell: bash" in github actions As [documented](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#exit-codes-and-error-action-preference), this brings us `set -eo pipefail`. --- .github/workflows/testsuite.yaml | 2 ++ 1 file changed, 2 insertions(+) (limited to '.github/workflows') diff --git a/.github/workflows/testsuite.yaml b/.github/workflows/testsuite.yaml index e44f104..e4188b2 100644 --- a/.github/workflows/testsuite.yaml +++ b/.github/workflows/testsuite.yaml @@ -24,6 +24,7 @@ jobs: if: steps.cache-musl.outputs.cache-hit != 'true' run: tar xzf ./x86_64-linux-musl-native.tgz - name: Running the testsuite + shell: bash run: make -C tests gcc | grep -zqv FAIL clang: @@ -51,4 +52,5 @@ jobs: sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-${{ matrix.version }} 100 sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-${{ matrix.version }} 100 - name: Running the testsuite + shell: bash run: make -C tests clang | grep -zqv FAIL -- cgit v1.3