Fix failure in ftst #15
Workflow file for this run
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
### | |
# Run a docker-based test of tests. | |
# | |
# See https://github.com/Unidata/docker-nctests | |
# How https://github.com/WardF/netcdf-test-action | |
on: [pull_request,workflow_dispatch] | |
concurrency: | |
group: ${{ github.workflow}}-${{ github.head_ref }} | |
cancel-in-progress: true | |
permissions: {} | |
jobs: | |
netcdf-tests-serial: | |
name: Docker-Based NetCDF-C, Fortran Regression Testing (Serial) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
c-branch: [ 'v4.9.2' ] | |
h5ver: [ '1.12.1', '1.14.6' ] | |
fortran-branch: [ 'v4.6.1' ] | |
c-compiler: [ 'gcc', 'clang' ] | |
buildsystem: [ 'both' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Pull and Run netCDF Regression Tests | |
uses: WardF/netcdf-test-action@v1 | |
with: | |
run-c: 'TRUE' | |
build-system: '${{ matrix.buildsystem }}' | |
hdf5-version: '${{ matrix.h5ver }}' | |
ctest-repeat: 3 | |
c-compiler: '${{ matrix.c-compiler }}' | |
c-branch: '${{ matrix.c-branch }}' | |
run-fortran: 'TRUE' | |
fortran-branch: '${{ matrix.fortran-branch }}' | |
netcdf-tests-parallel: | |
needs: netcdf-tests-serial | |
name: Docker-Based NetCDF-C, Fortran Regression Testing (Parallel) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
c-branch: [ 'v4.9.2' ] | |
h5ver: [ '1.14.6' ] | |
fortran-branch: [ 'v4.6.1' ] | |
c-compiler: [ 'mpicc' ] | |
mpich-version: [ '4.3.0' ] | |
buildsystem: [ 'cmake', 'autotools' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Pull and Run netCDF Regression Tests | |
uses: WardF/netcdf-test-action@v1 | |
with: | |
run-c: 'TRUE' | |
build-system: '${{ matrix.buildsystem }}' | |
hdf5-version: '${{ matrix.h5ver }}' | |
ctest-repeat: 3 | |
c-compiler: '${{ matrix.c-compiler }}' | |
c-branch: '${{ matrix.c-branch }}' | |
mpich-version: '${{ matrix.mpich-version }}' | |
run-fortran: 'TRUE' | |
fortran-branch: '${{ matrix.fortran-branch }}' |