-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GridModel; HydroMT 0.9 compliant; Deprecated PCR; Ubuntu testing (#211)
* Switched to gridmodel; deprecated pcr methods * Update the docs workflow * Update environment on linux * Rely on main branch for building docs * Fixed PCR stuff * Small rewrite * Added data for linux * Added linux test model results * Order of dir * Extra linux testdata * Flexible spatial dims * Linting.. * Linux data full; dont rely on core for clipping * Run on Ubuntu! * Added asterisk * Small fix in data_libs * fix prepare_ldd docs make code more robust for different CRS * Updated docs a biut * Added older function to api * small fixes and remove deprecation warnings from core * update example notebooks and ini * improve install guide * update docs * small fixes for docs * Fix comments; improved reading PCR files * Updated caching of workflows; inline with core; clock on dev test * Added extra dev py version * Updated mode to 'w+' * Use core main branch to build docs --------- Co-authored-by: JoostBuitink <44062204+JoostBuitink@users.noreply.github.com>
- Loading branch information
1 parent
af63b5a
commit a112260
Showing
68 changed files
with
2,428 additions
and
653 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"act": true | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
-P ubuntu-latest=catthehacker/ubuntu:full-latest | ||
-P ubuntu-latest=catthehacker/ubuntu:full-20.04 | ||
-P ubuntu-18.04=catthehacker/ubuntu:full-18.04 | ||
|
||
-e .act_event.json |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
|
||
name: Refrech cache | ||
|
||
on: | ||
schedule: | ||
- cron: 0 0 * * Sun # run on main every sunday at 00:00 | ||
workflow_dispatch: | ||
|
||
jobs: | ||
clear-cache: | ||
uses: ./.github/workflows/purge_cache.yml | ||
rebuild-cache: | ||
needs: clear-cache | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest] | ||
python-version: ['3.10','3.11'] | ||
name: py ${{ matrix.python-version }} | ||
runs-on: ${{ matrix.os }} | ||
# note absence of cucurrency, this one should only be run one at a time | ||
steps: | ||
- name: checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Miniforge3 | ||
uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
miniforge-variant: Miniforge3 | ||
miniforge-version: latest | ||
use-mamba: true | ||
|
||
- name: Setup env | ||
run: | | ||
pip install tomli | ||
python make_env.py test -p ${{ matrix.python-version}}.* -n hydromt_wflow | ||
mamba env create -f environment.yml | ||
mamba run -n hydromt_wflow pip install -e . | ||
# run tests first so that we can also cache all of the artefacts | ||
- name: Test | ||
run: | | ||
export NUMBA_DISABLE_JIT=1 | ||
PYTHONPYCACHEPREFIX=~/pycache mamba run -n hydromt_wflow python -m pytest --verbose --cov=hydromt_wflow --cov-report xml | ||
- name: Upload cache | ||
uses: actions/cache/save@v3 | ||
if: always() | ||
with: | ||
path: | | ||
/usr/share/miniconda3 | ||
~/pycache | ||
key: test-py${{ matrix.python-version }}-${{ hashFiles('environment.yml') }} | ||
id: test-cache | ||
|
||
docs-cache: | ||
needs: clear-cache | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest] | ||
python-version: ['3.11'] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Miniforge3 | ||
uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
miniforge-variant: Miniforge3 | ||
miniforge-version: latest | ||
use-mamba: true | ||
|
||
- name: Setup env | ||
run: | | ||
pip install tomli | ||
python make_env.py doc -p ${{ matrix.python-version }}.* -n hydromt_wflow | ||
mamba env create -f environment.yml | ||
mamba run -n hydromt_wflow pip install -e . | ||
# run tests first so that we can also cache all of the artefacts | ||
- name: Generate docs | ||
run: PYTHONPYCACHEPREFIX=~/pycache mamba run -n hydromt_wflow sphinx-build -M html ./docs ./docs/_build | ||
|
||
- name: Upload cache | ||
uses: actions/cache/save@v3 | ||
if: always() | ||
with: | ||
path: | | ||
/usr/share/miniconda3 | ||
~/pycache | ||
./docs/_build | ||
key: docs-${{ hashFiles('environment.yml') }} | ||
id: docs-cache |
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Purge cache | ||
on: | ||
workflow_dispatch: | ||
workflow_call: | ||
|
||
|
||
jobs: | ||
cleanup: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Cleanup cache | ||
run: | | ||
if gh cache list | grep -vq "No cache"; then | ||
gh cache delete -a | ||
else | ||
echo "No caches found. skipping..." | ||
fi | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.