Set correct no bounds check for Intel and gfortran only for Debug bui… #277
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
# This is a CI workflow for the NCEPLIBS-ip project. | |
# | |
# This workflow builds on Linux with different options. | |
# | |
# Ed Hartnett, 1/8/23 | |
name: Linux | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
Linux: | |
runs-on: ubuntu-latest | |
env: | |
FC: gfortran-10 | |
CC: gcc-10 | |
strategy: | |
matrix: | |
openmp: [ ON, OFF ] | |
options: [ -DBUILD_D=OFF, -DBUILD_4=OFF, -DBUILD_8=ON ] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
with: | |
path: ip | |
- name: build | |
run: | | |
cd ip | |
mkdir build | |
cd build | |
cmake -DCMAKE_PREFIX_PATH="~/" -DOPENMP=${{ matrix.openmp }} ${{ matrix.options }} .. | |
make -j2 VERBOSE=1 | |
- name: test | |
run: | | |
cd $GITHUB_WORKSPACE/ip/build | |
ctest --verbose --output-on-failure --rerun-failed |