Skip to content

MODFLOW 6 large models #158

MODFLOW 6 large models

MODFLOW 6 large models #158

Workflow file for this run

name: MODFLOW 6 large models
on:
# run at 6 AM UTC every day
schedule:
- cron: '0 6 * * *'
# workflow_dispatch trigger to run tests via GitHub UI or CLI,
# see https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow
workflow_dispatch:
jobs:
# caching only necessary on Windows
cache_ifort:
name: Cache Intel OneAPI compilers
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
# ifx
- {os: windows-2022, compiler: intel, version: 2022.2}
# ifort
- {os: windows-2022, compiler: intel-classic, version: "2021.10"}
- {os: windows-2022, compiler: intel-classic, version: 2021.9}
- {os: windows-2022, compiler: intel-classic, version: 2021.8}
- {os: windows-2022, compiler: intel-classic, version: 2021.7}
- {os: windows-2022, compiler: intel-classic, version: 2021.6}
steps:
- name: Setup ${{ matrix.compiler }} ${{ matrix.version }}
uses: fortran-lang/setup-fortran@v1
with:
compiler: ${{ matrix.compiler }}
version: ${{ matrix.version }}
test:
name: Test
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
include:
- {compiler: gcc, version: 13, repo: examples}
- {compiler: gcc, version: 13, repo: largetestmodels}
- {compiler: intel-classic, version: 2021.6, repo: examples}
- {compiler: intel-classic, version: 2021.6, repo: largetestmodels}
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout modflow6
uses: actions/checkout@v4
with:
path: modflow6
- name: Checkout modflow6-${{ matrix.repo }}
uses: actions/checkout@v4
with:
repository: MODFLOW-USGS/modflow6-${{ matrix.repo }}
path: modflow6-${{ matrix.repo }}
- name: Setup Micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: modflow6/environment.yml
cache-downloads: true
cache-environment: true
- name: Setup ${{ matrix.compiler }} ${{ matrix.version }}
uses: fortran-lang/setup-fortran@v1
with:
compiler: ${{ matrix.compiler }}
version: ${{ matrix.version }}
- name: Cache modflow6 examples
id: cache-examples
uses: actions/cache@v4
with:
path: modflow6-examples/examples
key: modflow6-examples-${{ hashFiles('modflow6-examples/scripts/**') }}
- name: Install extra Python packages
if: matrix.repo == 'examples' && steps.cache-examples.outputs.cache-hit != 'true'
working-directory: modflow6-examples/etc
run: |
pip install -r requirements.pip.txt
- name: Build example models
if: matrix.repo == 'examples' && steps.cache-examples.outputs.cache-hit != 'true'
working-directory: modflow6-examples/autotest
run: |
pytest -v -n auto test_scripts.py --init
ls -lh ../examples/
- name: Build modflow6
working-directory: modflow6
run: |
meson setup builddir -Ddebug=false --prefix=$(pwd) --libdir=bin
meson install -C builddir
- name: Get executables
working-directory: modflow6/autotest
env:
GITHUB_TOKEN: ${{ github.token }}
run: pytest -v --durations 0 get_exes.py
- name: Update flopy
working-directory: modflow6/autotest
run: python update_flopy.py
- name: Run tests
working-directory: modflow6/autotest
run: pytest -v -n auto --durations 0 test_${{ matrix.repo }}.py --keep-failed .failed
- name: Upload failed test output
if: failure()
uses: actions/upload-artifact@v4
with:
name: failed-${{ runner.os }}-${{ matrix.compiler }}-${{ matrix.version }}
path: modflow6/autotest/.failed