Skip to content

Commit

Permalink
Disable tracker jobs on Hercules
Browse files Browse the repository at this point in the history
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 NOAA-EMC#2639
  • Loading branch information
WalterKolczynski-NOAA committed May 30, 2024
1 parent 2a7211e commit 8904861
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions jobs/rocoto/genesis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
5 changes: 5 additions & 0 deletions jobs/rocoto/genesis_fsu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
5 changes: 5 additions & 0 deletions jobs/rocoto/tracker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 8904861

Please sign in to comment.