Skip to content

Fix wrong printout. #93

Fix wrong printout.

Fix wrong printout. #93

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