De-scream some file names in PAM #266
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: mmf-simplified-ubuntu | |
on: [push, pull_request] | |
jobs: | |
mmf-simplified-ubuntu: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
compiler: | |
- gcc | |
- clang | |
dycore: | |
- pamc | |
- pama | |
defaults: | |
run: | |
working-directory: standalone/mmf_simplified/build | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Apt-get update | |
run: sudo apt-get update | |
- name: Install mpi and netcdf | |
run: sudo apt-get install -y libopenmpi-dev libnetcdf-dev | |
- name: Configure and build | |
run: | | |
source ../../machines/ci/ubuntu-${{matrix.compiler}}.env && | |
YAKL_CXX_FLAGS="${YAKL_CXX_FLAGS} -DYAKL_DEBUG" | |
./cmakescript_${{matrix.dycore}}.sh && | |
cmake --build . | |
- name: Run driver | |
run: ./driver ../inputs/ci/input_${{matrix.dycore}}.yaml |