From 51bd4e14453c9884d032e90a242c9f3e13071772 Mon Sep 17 00:00:00 2001 From: Jonathan Moussa Date: Wed, 24 Aug 2022 00:36:28 -0400 Subject: [PATCH] Make ctest output more verbose in CI --- .github/workflows/CI.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index ad2801cb..6101d68e 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -59,7 +59,7 @@ jobs: - name: Test MOPAC with CTest run: | cd build - ctest -j $NUM_CORES + ctest -V -j $NUM_CORES - name: Save test results as an artifact (on failure) if: ${{ failure() }} @@ -140,7 +140,7 @@ jobs: run: | source /opt/intel/oneapi/setvars.sh cd build - ctest -j $NUM_CORES + ctest -V -j $NUM_CORES - name: Save test results as an artifact (on failure) if: ${{ failure() }} @@ -242,7 +242,7 @@ jobs: run: | source /opt/intel/oneapi/setvars.sh cd build - ctest -j $NUM_CORES + ctest -V -j $NUM_CORES - name: Save test results as an artifact (on failure) if: ${{ failure() }} @@ -341,7 +341,7 @@ jobs: call "C:\Program Files (x86)\Intel\oneAPI\compiler\${{ env.IFORT_WINDOWS_VERSION }}\env\vars.bat" call "C:\Program Files (x86)\Intel\oneAPI\mkl\${{ env.MKL_WINDOWS_VERSION }}\env\vars.bat" cd build - ctest -j %NUM_CORES% + ctest -V -j %NUM_CORES% - name: Save test results as an artifact (on failure) if: ${{ failure() }}