Skip to content
Open
Show file tree
Hide file tree
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: 6 additions & 6 deletions .github/workflows/bld_mpas_images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,19 @@ jobs:
- uses: actions/checkout@v6

- name: Log in to DockerHub
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Build minimal-toolchain:${{ matrix.toolchain }}
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
file: docker/Dockerfile-${{ matrix.toolchain }}-minimal
tags: minimal-toolchain:${{ matrix.toolchain }}

- name: Build add-netcdf:${{ matrix.toolchain }}
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
file: docker/Dockerfile-add-netcdf
tags: add-netcdf:${{ matrix.toolchain }}
Expand All @@ -51,7 +51,7 @@ jobs:
NFVERSION=${{ matrix.nfversion }}

- name: Build add-pnetcdf:${{ matrix.toolchain }}
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
file: docker/Dockerfile-add-pnetcdf
tags: add-pnetcdf:${{ matrix.toolchain }}
Expand All @@ -60,14 +60,14 @@ jobs:
PNFVERSION=${{ matrix.pnfversion }}

- name: Build add-python:${{ matrix.toolchain }}
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
file: docker/Dockerfile-add-python
build-args: TOOLCHAIN=${{ matrix.toolchain }}
tags: add-python:${{ matrix.toolchain }}

- name: Build and push dustinswales/ufs-community-mpas-ci:${{ matrix.toolchain }}
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
file: docker/Dockerfile-finalize
build-args: TOOLCHAIN=${{ matrix.toolchain }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_mpas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
steps:

- name: Checkout code (into ${driver_ROOT})
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Initialize submodules
run: |
Expand All @@ -41,7 +41,7 @@ jobs:

- name: Cache openmpi
id: cache-openmpi
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: /home/runner/ompi-4.1.6
key: cache-openmpi-${{matrix.fortran-compiler}}-key
Expand All @@ -64,7 +64,7 @@ jobs:

- name: Cache GNU autotools
id: cache-AUTOTOOLS
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: /home/runner/AUTOTOOLS
key: cache-AUTOTOOLS-${{matrix.fortran-compiler}}-key
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:

- name: Cache PnetCDF
id: cache-pnetcdf
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: /home/runner/PnetCDF
key: cache-PnetCDF-${{matrix.fortran-compiler}}-key
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build_mpas_intel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
steps:

- name: Checkout code (into ${driver_ROOT})
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Initialize submodules
run: |
Expand All @@ -44,7 +44,7 @@ jobs:

- name: Cache Intel
id: cache-INTEL
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: /opt/intel/oneapi/mpi/2021.10.0
key: cache-AUTOTOOLS-${{matrix.fortran-compiler}}-key
Expand All @@ -56,7 +56,7 @@ jobs:

- name: Cache GNU autotools
id: cache-AUTOTOOLS
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: /home/runner/AUTOTOOLS
key: cache-AUTOTOOLS-${{matrix.fortran-compiler}}-key
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:

- name: Cache PnetCDF
id: cache-pnetcdf
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: /home/runner/PnetCDF
key: cache-PnetCDF-${{matrix.fortran-compiler}}-key
Expand Down Expand Up @@ -144,4 +144,4 @@ jobs:
mkdir build
cd build
cmake -DMPAS_DOUBLE_PRECISION=OFF -DMPAS_CORES="init_atmosphere;atmosphere" ..
make -j8
make -j8
4 changes: 2 additions & 2 deletions .github/workflows/run_mpas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
# Step 2b: Clone MPAS and build (feature branch)
##########################################################################################
- name: Checkout MPAS codebase for testing.
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Initialize any submodules from testing codebase.
run: |
Expand Down Expand Up @@ -238,7 +238,7 @@ jobs:
# Step 6: Compare feature branch to baseline branch.
##########################################################################################
- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v3.2.0
uses: conda-incubator/setup-miniconda@v4
with:
python-version: ${{env.py-version}}
auto-update-conda: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run_mpas_hrrr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
# Step 2b: Clone MPAS and build (feature branch)
##########################################################################################
- name: Checkout MPAS codebase for testing.
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Initialize any submodules from testing codebase.
run: |
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
# Step 6: Compare feature branch to baseline branch.
##########################################################################################
- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v3.2.0
uses: conda-incubator/setup-miniconda@v4
with:
python-version: ${{env.py-version}}
auto-update-conda: true
Expand Down
Loading