From: Matthias Maier Date: Wed, 16 Dec 2020 23:52:30 +0000 (-0600) Subject: Github actions: make error logs available X-Git-Tag: v9.3.0-rc1~749^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3fed99106811fa9fcb44b2c8113301f314695e7;p=dealii.git Github actions: make error logs available --- 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