From d3fed99106811fa9fcb44b2c8113301f314695e7 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Wed, 16 Dec 2020 17:52:30 -0600 Subject: [PATCH] Github actions: make error logs available --- .github/workflows/osx.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.github/workflows/osx.yml b/.github/workflows/osx.yml index 091d544d37..389602a33c 100644 --- a/.github/workflows/osx.yml +++ b/.github/workflows/osx.yml @@ -30,6 +30,20 @@ jobs: run: | make -j 2 make -j 2 test # quicktests + - name: archive error 1 + uses: actions/upload-artifact@v1 + if: always() + continue-on-error: true + with: + name: osx-serial-CMakeOutput.log + path: CMakeFiles/CMakeOutput.log + - name: archive error 2 + uses: actions/upload-artifact@v1 + if: always() + continue-on-error: true + with: + name: osx-serial-CMakeError.log + path: CMakeFiles/CMakeError.log osx-parallel64: # MPI build using apple clang and 64 bit indices @@ -64,4 +78,18 @@ jobs: run: | make -j 2 make -j 2 test #quicktests + - name: archive error 1 + uses: actions/upload-artifact@v1 + if: always() + continue-on-error: true + with: + name: osx-parallel64-CMakeOutput.log + path: CMakeFiles/CMakeOutput.log + - name: archive error 2 + uses: actions/upload-artifact@v1 + if: always() + continue-on-error: true + with: + name: osx-parallel64-CMakeError.log + path: CMakeFiles/CMakeError.log -- 2.39.5