From 7f10a504f84c729a18478bc13cfc950872bee8d2 Mon Sep 17 00:00:00 2001 From: Sebastian Ullrich Date: Sat, 2 May 2020 10:40:47 +0200 Subject: [PATCH] chore: CI: fix ctest cmdline that ignored --output-on-failure --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9377d4b6fa..f3dbd1425a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,10 +83,10 @@ jobs: run: msys2do ./script/ci.sh if: matrix.os == 'windows-latest' - name: Test - run: nix-shell --run "cd build; ctest -j --output-on-failure < /dev/null" + run: nix-shell --run "cd build; ctest -j4 --output-on-failure < /dev/null" if: matrix.os != 'windows-latest' - name: Test - run: msys2do cd build; ctest -j --output-on-failure ^< /dev/null + run: msys2do cd build; ctest -j4 --output-on-failure ^< /dev/null shell: cmd if: matrix.os == 'windows-latest' - name: Build Stage 2