Merge pull request #323 from rem1776/ci_test1 #234
This file contains hidden or 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
# Github actions CI file | |
# Ryan Mulhall 2020 | |
# CI testing for the FRE-NCtools repo, builds and runs unit tests | |
# image dockerfile is maintained here: | |
# https://gitlab.gfdl.noaa.gov/fre/hpc-me | |
name: FRE-NCtools CI | |
on: [push, pull_request] | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
with_mpi: ['','--with-mpi'] | |
enable_quad_precision: ['', '--enable-quad-precision'] | |
container: | |
image: ghcr.io/noaa-gfdl/fre-nctools-ci-rocky-gnu:14.2.0_v2 | |
env: | |
MPI: ${{ matrix.with_mpi }} | |
QUAD_P: ${{ matrix.enable_quad_precision }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Configure | |
run: | | |
mkdir build && cd build | |
autoreconf -i ../configure.ac | |
../configure $MPI $QUAD_P || cat config.log | |
- name: Build tools | |
run: make -C build | |
- name: Run all tests | |
if: matrix.with_mpi == '' | |
run: make -C build -j check LOG_DRIVER_FLAGS=--comments | |
- name: Run most tests (skip the slow ones) | |
if: matrix.with_mpi == '--with-mpi' | |
env: | |
SKIP_TESTS: 4 | |
run: make -C build -j check LOG_DRIVER_FLAGS=--comments | |
- name: Save log file on failure | |
uses: actions/upload-artifact@v4.4.0 | |
if: failure() | |
with: | |
name: test-suite.log | |
path: build/t/test-suite.log |