Add apar to the netCDF file. To write out apar, set write_apar_vs_tim… #893
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: Tests | |
on: [push, pull_request] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
standard_tests: | |
runs-on: ubuntu-latest | |
env: | |
OMPI_MCA_rmaps_base_oversubscribe: yes | |
MPIRUN: mpiexec -np | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- name: "Makefiles" | |
- name: "Makefiles, debug" | |
gk_system: gnu_ubuntu_debug | |
- name: "CMake" | |
steps: | |
- name: Install dependencies | |
run: sudo apt update && | |
sudo apt install -y | |
gfortran | |
make | |
libfftw3-dev | |
libnetcdf-dev | |
libnetcdff-dev | |
netcdf-bin | |
python3 | |
python3-pip | |
openmpi-bin | |
libopenmpi-dev | |
- name: System information | |
run: | | |
cat /etc/*release | |
gfortran --version | |
nf-config --all | |
- uses: actions/checkout@v2 | |
- name: Install integrated test dependencies | |
run: pip3 install --user -r tests/integrated/requirements.txt | |
- name: Build stella (Makefile) | |
if: ${{ contains(matrix.config.name, 'Makefile') }} | |
run: ./scripts/ci_build_and_run.sh ${{ matrix.config.gk_system }} | |
- name: Build stella (CMake) | |
if: ${{ contains(matrix.config.name, 'CMake') }} | |
run: ./scripts/ci_cmake_build_and_run.sh |