summaryrefslogtreecommitdiff
path: root/.github/workflows/testsuite.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/testsuite.yaml')
-rw-r--r--.github/workflows/testsuite.yaml10
1 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/testsuite.yaml b/.github/workflows/testsuite.yaml
index 9588cb8..c2ca309 100644
--- a/.github/workflows/testsuite.yaml
+++ b/.github/workflows/testsuite.yaml
@@ -30,9 +30,12 @@ jobs:
30 run: | 30 run: |
31 sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-${{ matrix.version }} 100 31 sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-${{ matrix.version }} 100
32 sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${{ matrix.version }} 100 32 sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${{ matrix.version }} 100
33 - name: Build
34 shell: bash
35 run: make -C tests gcc
33 - name: Running the testsuite 36 - name: Running the testsuite
34 shell: bash 37 shell: bash
35 run: make -C tests gcc | grep -zqv FAIL 38 run: make -C tests run | grep -zqv FAIL
36 39
37 clang: 40 clang:
38 runs-on: ubuntu-latest 41 runs-on: ubuntu-latest
@@ -58,6 +61,9 @@ jobs:
58 run: | 61 run: |
59 sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-${{ matrix.version }} 100 62 sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-${{ matrix.version }} 100
60 sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-${{ matrix.version }} 100 63 sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-${{ matrix.version }} 100
64 - name: Build
65 shell: bash
66 run: make -C tests clang
61 - name: Running the testsuite 67 - name: Running the testsuite
62 shell: bash 68 shell: bash
63 run: make -C tests clang | grep -zqv FAIL 69 run: make -C tests run | grep -zqv FAIL