From: Matthias Maier Date: Tue, 7 Mar 2023 00:01:10 +0000 (+0000) Subject: Merge pull request #14848 from tamiko/print_compiler_invocation X-Git-Tag: v9.5.0-rc1~508 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79500c52b3c56e437dc72ba4e3791c524f3944bb;p=dealii.git Merge pull request #14848 from tamiko/print_compiler_invocation CI: print full compiler command line --- 79500c52b3c56e437dc72ba4e3791c524f3944bb diff --cc .github/workflows/osx.yml index f2d31aa9b9,a9c0b8ea17..4e9b75ecb7 --- a/.github/workflows/osx.yml +++ b/.github/workflows/osx.yml @@@ -25,12 -25,15 +25,12 @@@ jobs - name: configure run: | cmake -D CMAKE_BUILD_TYPE=Debug -D DEAL_II_CXX_FLAGS='-Werror' -D DEAL_II_EARLY_DEPRECATIONS=ON . - - name: archive - uses: actions/upload-artifact@v3 - with: - name: serial-detailed.log - path: detailed.log + - name: print detailed.log + run: cat detailed.log - name: build run: | - make -j 2 - make -j 2 test # quicktests + make VERBOSE=1 -j2 + make -j2 test # quicktests - name: archive error 1 uses: actions/upload-artifact@v3 if: always() @@@ -68,12 -71,15 +68,12 @@@ - name: configure run: | CC=mpicc CXX=mpic++ cmake -D CMAKE_BUILD_TYPE=Debug -D DEAL_II_WITH_64BIT_INDICES=ON -D DEAL_II_CXX_FLAGS='-Werror' -D DEAL_II_EARLY_DEPRECATIONS=ON -D DEAL_II_WITH_MPI=on . - - name: archive - uses: actions/upload-artifact@v3 - with: - name: parallel-detailed.log - path: detailed.log + - name: print detailed.log + run: cat detailed.log - name: build run: | - make -j 2 - make -j 2 test #quicktests + make VERBOSE=1 -j2 + make -j2 test #quicktests - name: archive error 1 uses: actions/upload-artifact@v3 if: always()