-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #447 from jedwards4b/fix/nsteps_alarms
alarms based on nsteps
- Loading branch information
Showing
18 changed files
with
90 additions
and
1,537 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
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 |
---|---|---|
|
@@ -27,7 +27,7 @@ jobs: | |
LDFLAGS: "-L/usr/lib/x86_64-linux-gnu -lnetcdf -lnetcdff -lpnetcdf" | ||
# Versions of all dependencies can be updated here | ||
ESMF_VERSION: v8.6.1 | ||
PARALLELIO_VERSION: pio2_6_2 | ||
PARALLELIO_VERSION: pio2_6_3 | ||
CIME_MODEL: cesm | ||
CIME_DRIVER: nuopc | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -78,13 +78,14 @@ jobs: | |
# cpl7 is needed - i think that's a bug | ||
- name: checkout externals | ||
run: | | ||
git config --global user.name "${GITHUB_ACTOR}" | ||
git config --global user.email "${GITHUB_ACTOR_ID}+${GITHUB_ACTOR}@users.noreply.github.com" | ||
pushd cesm | ||
./bin/git-fleximod update ccs_config cdeps share mct parallelio | ||
./bin/git-fleximod update ccs_config cdeps share mct parallelio cime | ||
cd ccs_config | ||
git checkout main | ||
cd ../ | ||
git clone https://github.com/ESMCI/cime | ||
cd cime | ||
cd ../cime | ||
git checkout master | ||
if [[ ! -e "${PWD}/.gitmodules.bak" ]] | ||
then | ||
echo "Converting [email protected] to https://github.com urls in ${PWD}/.gitmodules" | ||
|
@@ -172,6 +173,6 @@ jobs: | |
popd | ||
# the following can be used by developers to login to the github server in case of errors | ||
# see https://github.com/marketplace/actions/debugging-with-tmate for further details | ||
- name: Setup tmate session | ||
if: ${{ failure() }} | ||
uses: mxschmitt/action-tmate@v3 | ||
# - name: Setup tmate session | ||
# if: ${{ failure() }} | ||
# uses: mxschmitt/action-tmate@v3 |
Oops, something went wrong.