Fix wrong printout. #93
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitHub Actions CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout Action | |
uses: actions/checkout@v3 | |
- name: Setup Dependencies | |
run: | | |
sudo apt install g++-10 libgomp1 | |
- name: Configure | |
run: | | |
mkdir build_gcc_noomp; cd build_gcc_noomp | |
cmake -DCMAKE_CXX_COMPILER=g++-10 -DCMAKE_Fortran_COMPILER=gfortran-10 .. | |
- name: Build | |
run: cd build_gcc_noomp; make -j2 -k | |
- name: Test | |
run: cd build_gcc_noomp; ctest --output-on-failure |