Skip to content

Commit 5b7d769

Browse files
authored
Merge pull request #447 from jedwards4b/fix/nsteps_alarms
alarms based on nsteps
2 parents 864b7ce + 0db1554 commit 5b7d769

18 files changed

+90
-1537
lines changed

.github/workflows/extbuild.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
ESMF_VERSION: v8.6.1
2424
PNETCDF_VERSION: checkpoint.1.12.3
2525
NETCDF_FORTRAN_VERSION: v4.6.1
26-
PIO_VERSION: pio2_6_2
27-
CDEPS_VERSION: cdeps1.0.36
26+
PIO_VERSION: pio2_6_3
27+
CDEPS_VERSION: cdeps1.0.49
2828
steps:
2929
- uses: actions/checkout@v4
3030
# Build the ESMF library, if the cache contains a previous build

.github/workflows/srt.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
LDFLAGS: "-L/usr/lib/x86_64-linux-gnu -lnetcdf -lnetcdff -lpnetcdf"
2828
# Versions of all dependencies can be updated here
2929
ESMF_VERSION: v8.6.1
30-
PARALLELIO_VERSION: pio2_6_2
30+
PARALLELIO_VERSION: pio2_6_3
3131
CIME_MODEL: cesm
3232
CIME_DRIVER: nuopc
3333
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -78,13 +78,14 @@ jobs:
7878
# cpl7 is needed - i think that's a bug
7979
- name: checkout externals
8080
run: |
81+
git config --global user.name "${GITHUB_ACTOR}"
82+
git config --global user.email "${GITHUB_ACTOR_ID}+${GITHUB_ACTOR}@users.noreply.github.com"
8183
pushd cesm
82-
./bin/git-fleximod update ccs_config cdeps share mct parallelio
84+
./bin/git-fleximod update ccs_config cdeps share mct parallelio cime
8385
cd ccs_config
8486
git checkout main
85-
cd ../
86-
git clone https://github.com/ESMCI/cime
87-
cd cime
87+
cd ../cime
88+
git checkout master
8889
if [[ ! -e "${PWD}/.gitmodules.bak" ]]
8990
then
9091
echo "Converting [email protected] to https://github.com urls in ${PWD}/.gitmodules"
@@ -172,6 +173,6 @@ jobs:
172173
popd
173174
# the following can be used by developers to login to the github server in case of errors
174175
# see https://github.com/marketplace/actions/debugging-with-tmate for further details
175-
- name: Setup tmate session
176-
if: ${{ failure() }}
177-
uses: mxschmitt/action-tmate@v3
176+
# - name: Setup tmate session
177+
# if: ${{ failure() }}
178+
# uses: mxschmitt/action-tmate@v3

0 commit comments

Comments
 (0)