commit 737b5207e12bb12a270fa1a385048fcf55617e43
parent bfbaa577f6fc46ebb965724e0f261e79e26ec9fb
Author: jvoisin <julien.voisin@dustri.org>
Date: Sun, 20 Aug 2023 21:33:33 +0200
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`.
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git 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