adding ctiation file #160
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 | |
on: [ push, pull_request ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build_test_no_mpi_no_memcheck: | |
runs-on: ubuntu-latest | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: build Docker image | |
run: docker build -t tuv-x-test . | |
- name: run tests in container | |
run: docker run --name test-container -t tuv-x-test bash -c 'make test ARGS="--rerun-failed --output-on-failure"' | |
build_test_with_mpi_no_memcheck: | |
runs-on: ubuntu-latest | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: build Docker image for MPI tests | |
run: docker build -t tuv-x-mpi-test . -f Dockerfile.mpi | |
- name: run MPI tests in container | |
run: docker run -t tuv-x-mpi-test bash -c 'make test ARGS="--rerun-failed --output-on-failure"' | |
build_test_no_mpi_with_memcheck: | |
runs-on: ubuntu-latest | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: build Docker image | |
run: docker build -t tuv-x-test . -f Dockerfile.memcheck | |
- name: run tests in container | |
run: docker run --name test-container -t tuv-x-test bash -c 'make coverage ARGS="--rerun-failed --output-on-failure"' | |
- name: copy coverage from container | |
run: docker cp test-container:build/coverage.info . | |
- uses: codecov/codecov-action@v2 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: coverage.info | |
build_test_with_mpi_with_memcheck: | |
runs-on: ubuntu-latest | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: build Docker image for MPI tests | |
run: docker build -t tuv-x-mpi-test . -f Dockerfile.mpi.memcheck | |
- name: run MPI tests in container | |
run: docker run -t tuv-x-mpi-test bash -c 'make test ARGS="--rerun-failed --output-on-failure"' | |
gcc: | |
runs-on: ubuntu-latest | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
strategy: | |
matrix: | |
gcc_version: [11, 12, 13] | |
env: | |
FC: gfortran-${{ matrix.gcc_version }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libnetcdf-dev netcdf-bin libnetcdff-dev | |
- name: Install python dependencies | |
run: pip install numpy scipy | |
- name: Run Cmake | |
run: cmake -S . -B build | |
- name: Build | |
run: cmake --build build --parallel | |
- name: Run tests | |
run: | | |
cd build | |
ctest --rerun-failed --output-on-failure . --verbose -j |