Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .github/workflows/gis_coarse_meshgen.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
name: CI/CD Build Workflow
name: GIS Coarse Mesh Generation

on:
pull_request:
branches: [main]
paths:
- compass/landice/mesh.py
- compass/landice/tests/greenland/mesh.py
- .github/workflows/gis_coarse_meshgen.yml

# Allow manual triggering of the workflow
workflow_dispatch:

jobs:
gis-coarse-meshgen:
Expand All @@ -31,8 +35,10 @@ jobs:
popd

# download the input GIS coarse mesh
wget https://rpi.app.box.com/public/static/qytr3c49h1xbucxz594df327qatiu8ds.tgz
tar xf qytr3c49h1xbucxz594df327qatiu8ds.tgz
tarball=gis4kmSubSampled_01302025.tgz
url=https://web.lcrc.anl.gov/public/e3sm/mpas_standalonedata/mpas-albany-landice/
wget ${url}/${tarball}
tar xf ${tarball}

# create the config file describing the system
cat << EOF > system.cfg
Expand Down
Loading