Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hot fix for bash CI on WCOSS2 #2536

Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
removed j from gh clone and extra print line in rocotostat that was s…
…toping the check script
  • Loading branch information
tmcguinness committed Apr 25, 2024
commit f96e851b49d93a9676f0396031e8bcf67eccc837
2 changes: 1 addition & 1 deletion ci/scripts/clone-build_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ git clone "${REPO_URL}"
cd global-workflow || exit 1

# checkout pull request
"${GH}" pr checkout "${PR}" --repo "${REPO_URL}" --recurse-submodules -j 4
"${GH}" pr checkout "${PR}" --repo "${REPO_URL}" --recurse-submodules
HOMEgfs="${PWD}"
source "${HOMEgfs}/ush/detect_machine.sh"

Expand Down
1 change: 0 additions & 1 deletion ci/scripts/driver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ set -eux
# development branch for the global-workflow repo. It then stages tests directories per
# PR number and calls clone-build_ci.sh to perform a clone and full build from the PR.
# It then is ready to run a suite of regression tests with various configurations
# no op selftest
#######################################################################################

export REPO_URL=${REPO_URL:-"git@github.com:NOAA-EMC/global-workflow.git"}
Expand Down
2 changes: 0 additions & 2 deletions ci/scripts/utils/rocotostat.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,6 @@ def rocoto_statcount():
rocoto_status = rocoto_statcount()

if rocoto_status['CYCLES_TOTAL'] == rocoto_status['CYCLES_DONE']:
if not args.export:
print(f"All {rocoto_status['CYCLES_TOTAL']} Cycles are Done")
rocoto_state = 'DONE'
elif rocoto_status['DEAD'] > 0:
error_return = rocoto_status['FAIL'] + rocoto_status['DEAD']
Expand Down
Loading