From 8904861fb9930a56d0a90787894deaab66837bda Mon Sep 17 00:00:00 2001 From: "Walter.Kolczynski" Date: Wed, 29 May 2024 20:38:16 -0500 Subject: [PATCH] Disable tracker jobs on Hercules The external tracker package is not yet available on Rocky 9, so a hack is added to skip those jobs on Hercules until the package is available. This will need to be extended to Orion if that machine transitions to Rocky 9 before a package is available. Refs #2639 --- jobs/rocoto/genesis.sh | 5 +++++ jobs/rocoto/genesis_fsu.sh | 5 +++++ jobs/rocoto/tracker.sh | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/jobs/rocoto/genesis.sh b/jobs/rocoto/genesis.sh index 009a7006ef3..e6c25a5ec05 100755 --- a/jobs/rocoto/genesis.sh +++ b/jobs/rocoto/genesis.sh @@ -2,6 +2,11 @@ source "${HOMEgfs}/ush/preamble.sh" +# Hack to temporary skip this as the tracker has not been build +# on Hercules Rocky 9 yet +# TODO: Remove this after tracker has been built for Rocky 9 #2639 +if [[ ${machine} == 'hercules' ]]; then exit 0; fi + ############################################################### # Source FV3GFS workflow modules source "${HOMEgfs}/ush/load_fv3gfs_modules.sh" diff --git a/jobs/rocoto/genesis_fsu.sh b/jobs/rocoto/genesis_fsu.sh index 05c0ff8827b..f2859e0d5b1 100755 --- a/jobs/rocoto/genesis_fsu.sh +++ b/jobs/rocoto/genesis_fsu.sh @@ -2,6 +2,11 @@ source "${HOMEgfs}/ush/preamble.sh" +# Hack to temporary skip this as the tracker has not been build +# on Hercules Rocky 9 yet +# TODO: Remove this after tracker has been built for Rocky 9 #2639 +if [[ ${machine} == 'hercules' ]]; then exit 0; fi + ############################################################### # Source FV3GFS workflow modules source "${HOMEgfs}/ush/load_fv3gfs_modules.sh" diff --git a/jobs/rocoto/tracker.sh b/jobs/rocoto/tracker.sh index 3e2efd644ef..ef8876c1b2d 100755 --- a/jobs/rocoto/tracker.sh +++ b/jobs/rocoto/tracker.sh @@ -2,6 +2,11 @@ source "${HOMEgfs}/ush/preamble.sh" +# Hack to temporary skip this as the tracker has not been build +# on Hercules Rocky 9 yet +# TODO: Remove this after tracker has been built for Rocky 9 #2639 +if [[ ${machine} == 'hercules' ]]; then exit 0; fi + ############################################################### # Source FV3GFS workflow modules source "${HOMEgfs}/ush/load_fv3gfs_modules.sh"