add check flags to GNU CI and fix for data_override ci failures #884
Workflow file for this run
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: Build libFMS with cmake | |
on: [push, pull_request] | |
# cancel running jobs if theres a newer push | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
omp-flags: [ -DOPENMP=on, -DOPENMP=off ] | |
libyaml-flag: [ "", -DWITH_YAML=on ] | |
io-flag: [ "", -DUSE_DEPRECATED_IO=on ] | |
build-type: [ "-DCMAKE_BUILD_TYPE=Release", "-DCMAKE_BUILD_TYPE=Debug" ] | |
container: | |
image: ghcr.io/noaa-gfdl/fms/fms-ci-rocky-gnu:13.2.0 | |
env: | |
CMAKE_FLAGS: "${{ matrix.build-type }} ${{ matrix.omp-flags }} ${{ matrix.io-flag }} ${{ matrix.libyaml-flag }} -D64BIT=on" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Generate makefiles with CMake | |
run: cmake $CMAKE_FLAGS -DNetCDF_ROOT=/opt/view -DLIBYAML_ROOT=/opt/view | |
- name: Build the library | |
run: make | |
- name: Link with basic executable | |
run: | | |
echo "program test" > test.F90 | |
echo " use fms_mod" >> test.F90 | |
echo " call fms_init" >> test.F90 | |
echo " call fms_end" >> test.F90 | |
echo "end program" >> test.F90 | |
mpifort -L/opt/view/lib -fopenmp `nf-config --flibs` -Iinclude_r4 -Iinclude_r8 test.F90 libfms_r4.a libfms_r8.a -o test.x | |
touch input.nml | |
- name: Run executable | |
run: ./test.x |