This commit changes the build command to "make VERBOSE=1 -j2" which will
print the full compile command. While this makes the output larger it is
nevertheless very useful for understanding what final command line was
used for compilation and linkage.
- name: build
run: |
cd build
- make -j 2
+ make VERBOSE=1 -j2
- name: quicktest
run: |
cd build
- name: build
run: |
cd build
- make -j 2
+ make VERBOSE=1 -j2
- name: test
run: |
# Remove warning: "A high-performance Open MPI point-to-point
export OMPI_MCA_btl_base_warn_component_unused='0'
cd build
- make -j 2 setup_tests_simplex
- ctest --output-on-failure -j 2
+ make -j2 setup_tests_simplex
+ ctest --output-on-failure -j2
- name: failed test log
if: ${{ failure() }}
uses: actions/upload-artifact@v3
- name: build deal.II
run: |
cd build
- make -j 2
+ make VERBOSE=1 -j2
- name: build CUDA tests
run: |
cd build
- make -j 2 setup_tests_cuda
+ make -j2 setup_tests_cuda
cd tests/cuda
make -j2 compile_test_executables
run: |
source /opt/intel/oneapi/setvars.sh
cd build
- make -j 2
+ make VERBOSE=1 -j2
- name: quicktest
run: |
source /opt/intel/oneapi/setvars.sh
path: 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()
path: 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()
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams