tests/CMakeLists.txt: Fix interp/input mod deps and clean up target d… #360
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 MacOS with different options. | |
# | |
# Ed Hartnett, 1/8/23 | |
name: MacOS | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
MacOS: | |
runs-on: macos-latest | |
env: | |
FC: gfortran-11 | |
CC: gcc-11 | |
strategy: | |
matrix: | |
openmp: [ ON, OFF ] | |
sharedlibs: [ON, OFF] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
path: ip | |
- name: build | |
run: | | |
cmake -S ip -B ip/build -DOPENMP=${{ matrix.openmp }} -DBUILD_SHARED_LIBS=${{ matrix.sharedlibs }} -DCMAKE_INSTALL_PREFIX=~/install -DBUILD_8=ON -DCMAKE_BUILD_TYPE=Debug | |
cmake --build ip/build --parallel 2 --verbose | |
cmake --install ip/build | |
ls -l ~/install | |
ls -l ~/install/lib | |
- name: test | |
run: ctest --test-dir ip/build --parallel 2 --verbose --output-on-failure --rerun-failed |