-
Notifications
You must be signed in to change notification settings - Fork 28
44 lines (44 loc) · 1.28 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Github actions CI file
# Ryan Mulhall 2020
# CI testing for the FRE-NCtools repo, builds and runs unit tests
# github.com/noaa-gfdl/fre-nctools-container
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: noaagfdl/fre-nctools-base:2.0.0-focal
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
- 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/[email protected]
if: failure()
with:
name: test-suite.log
path: build/t/test-suite.log