|
3 | 3 | # CI testing for the FRE-NCtools repo, builds and runs unit tests |
4 | 4 | # image dockerfile is maintained here: |
5 | 5 | # https://gitlab.gfdl.noaa.gov/fre/hpc-me |
6 | | -name: FRE-NCtools Check Expensive |
7 | | -on: |
8 | | - workflow_run: |
9 | | - workflows: ["FRE-NCtools CI"] |
10 | | - types: |
11 | | - - completed |
12 | | -jobs: |
13 | | - CI: |
14 | | - runs-on: ubuntu-latest |
15 | | - strategy: |
16 | | - matrix: |
17 | | - with_mpi: ['','--with-mpi'] |
18 | | - enable_quad_precision: ['', '--enable-quad-precision'] |
19 | | - container: |
20 | | - image: ghcr.io/noaa-gfdl/fre-nctools-ci-rocky-gnu:14.2.0_v2 |
21 | | - env: |
22 | | - MPI: ${{ matrix.with_mpi }} |
23 | | - QUAD_P: ${{ matrix.enable_quad_precision }} |
24 | | - steps: |
25 | | - - name: Checkout |
26 | | - uses: actions/checkout@v4 |
27 | | - with: |
28 | | - submodules: recursive |
29 | | - - name: Configure |
30 | | - run: | |
31 | | - mkdir build && cd build |
32 | | - autoreconf -i ../configure.ac |
33 | | - ../configure $MPI $QUAD_P || cat config.log |
34 | | - - name: Build |
35 | | - run: make -C build -j |
36 | | - - name: Run most tests (skip the slow ones) |
37 | | - run: make -C build check-very-expensive |
38 | | - - name: Save log file on failure |
39 | | - uses: actions/upload-artifact@v4.4.0 |
40 | | - if: failure() |
41 | | - with: |
42 | | - name: test-suites |
43 | | - path: | |
44 | | - build/tests/test-suite.log |
| 6 | +#name: FRE-NCtools Check Expensive |
| 7 | +#on: |
| 8 | +# workflow_run: |
| 9 | +# workflows: ["FRE-NCtools CI"] |
| 10 | +# types: |
| 11 | +# - completed |
| 12 | +#jobs: |
| 13 | +# CI: |
| 14 | +# runs-on: ubuntu-latest |
| 15 | +# strategy: |
| 16 | +# matrix: |
| 17 | +# with_mpi: ['','--with-mpi'] |
| 18 | +# enable_quad_precision: ['', '--enable-quad-precision'] |
| 19 | +# container: |
| 20 | +# image: ghcr.io/noaa-gfdl/fre-nctools-ci-rocky-gnu:14.2.0_v2 |
| 21 | +# env: |
| 22 | +# MPI: ${{ matrix.with_mpi }} |
| 23 | +# QUAD_P: ${{ matrix.enable_quad_precision }} |
| 24 | +# steps: |
| 25 | +# - name: Checkout |
| 26 | +# uses: actions/checkout@v4 |
| 27 | +# with: |
| 28 | +# submodules: recursive |
| 29 | +# - name: Configure |
| 30 | +# run: | |
| 31 | +# mkdir build && cd build |
| 32 | +# autoreconf -i ../configure.ac |
| 33 | +# ../configure $MPI $QUAD_P || cat config.log |
| 34 | +# - name: Build |
| 35 | +# run: make -C build -j |
| 36 | +# - name: Run most tests (skip the slow ones) |
| 37 | +# run: make -C build check-very-expensive |
| 38 | +# - name: Save log file on failure |
| 39 | +# uses: actions/upload-artifact@v4.4.0 |
| 40 | +# if: failure() |
| 41 | +# with: |
| 42 | +# name: test-suites |
| 43 | +# path: | |
| 44 | +# build/tests/test-suite.log |
0 commit comments