From d60c291402ed03207f42de1d50e4a66f66583886 Mon Sep 17 00:00:00 2001 From: Patrick Brosi Date: Mon, 29 Aug 2022 14:38:23 +0200 Subject: [PATCH] print failing tests --- .github/workflows/build.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3615b5b..f88c2b1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: - name: make run: cd build && make - name: tests - run: cd build && make test + run: cd build && ctest --output-on-failure ubuntu-20-04-build-gcc: runs-on: ubuntu-20-04 steps: @@ -35,7 +35,7 @@ jobs: - name: make run: cd build && make - name: tests - run: cd build && make test + run: cd build && ctest --output-on-failure ubuntu-latest-build-gcc: runs-on: ubuntu-latest steps: @@ -50,7 +50,7 @@ jobs: - name: make run: cd build && make - name: tests - run: cd build && make test + run: cd build && ctest --output-on-failure ubuntu-18-04-build-clang-3_9: runs-on: ubuntu-18.04 steps: @@ -69,7 +69,7 @@ jobs: - name: make run: cd build && make - name: tests - run: cd build && make test + run: cd build && ctest --output-on-failure ubuntu-20-04-build-clang: runs-on: ubuntu-20.04 steps: @@ -88,7 +88,7 @@ jobs: - name: make run: cd build && make - name: tests - run: cd build && make test + run: cd build && ctest --output-on-failure ubuntu-latest-build-clang: runs-on: ubuntu-latest steps: @@ -107,7 +107,7 @@ jobs: - name: make run: cd build && make - name: tests - run: cd build && make test + run: cd build && ctest --output-on-failure macos-latest-build: runs-on: macOS-latest steps: @@ -122,7 +122,7 @@ jobs: - name: make run: cd build && make - name: tests - run: cd build && make test + run: cd build && ctest --output-on-failure macos-12-build: runs-on: macOS-12 steps: @@ -137,4 +137,4 @@ jobs: - name: make run: cd build && make - name: tests - run: cd build && make test + run: cd build && ctest --output-on-failure