Skip to content

Commit

Permalink
Enables workflow ssh
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonb5 committed Jul 3, 2024
1 parent b6e220a commit 7121e42
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:
pytest -vvv --cov=CIME --machine docker --no-fortran-run --no-teardown CIME/tests/test_sys*
- uses: mxschmitt/action-tmate@v3
if: ${{ !always() }}
if: ${{ always() }}
with:
limit-access-to-actor: true
- name: Create testing log archive
Expand Down
7 changes: 5 additions & 2 deletions docker/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,15 @@ if [[ "${SKIP_MODEL_SETUP}" == "false" ]]; then
# fix E3SM gitmodules
fix_gitmodules "${PWD}"

git status

# checkout submodules
git submodule update --init "${GIT_SUBMODULE_FLAGS}"

# fix mct arflags flags
fix_mct_arflags "${SRC_PATH}/E3SM/externals/mct"

git status
git submodule status

pushd cime
elif [[ "${CIME_MODEL}" == "cesm" ]]; then
echo "Setting up CESM"
Expand All @@ -93,6 +94,7 @@ if [[ "${SKIP_MODEL_SETUP}" == "false" ]]; then
./bin/git-fleximod update

git status
git submodule status

pushd cime
fi
Expand All @@ -114,6 +116,7 @@ if [[ "$(to_lowercase SKIP_CIME_UPDATE)" == "false" ]]; then
fi

git status
git submodule status

if [[ "${CIME_MODEL}" == "e3sm" ]]; then
# link v2 config_machines
Expand Down

0 comments on commit 7121e42

Please sign in to comment.