Skip to content

Commit

Permalink
Add rstprod support to Orion (#421)
Browse files Browse the repository at this point in the history
- Update EMC_verif-global tag to verif_global_v2.2.1
- Turn on rstprod support by default on Orion
- Change default DMPDIR path on Orion to new rstprod-supported GDA

Refs: #347
  • Loading branch information
KateFriedman-NOAA committed Aug 23, 2021
1 parent 20c331d commit 7233d0c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion sorc/checkout.sh
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ if [[ ! -d verif-global.fd ]] ; then
rm -f ${topdir}/checkout-verif-global.log
git clone --recursive https://github.com/NOAA-EMC/EMC_verif-global.git verif-global.fd >> ${topdir}/checkout-verif-global.log 2>&1
cd verif-global.fd
git checkout verif_global_v2.0.2
git checkout verif_global_v2.2.1
cd ${topdir}
else
echo 'Skip. Directory verif-global.fd already exist.'
Expand Down
6 changes: 3 additions & 3 deletions ush/rocoto/setup_expt.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def edit_baseconfig():
elif machine == 'ORION':
base_git = '/work/noaa/global/glopara/git'
base_svn = '/work/noaa/global/glopara/svn'
dmpdir = '/work/noaa/global/glopara/dump'
dmpdir = '/work/noaa/rstprod/dump'
nwprod = '/work/noaa/global/glopara/nwpara'
comroot = '/work/noaa/global/glopara/com'
homedir = '/work/noaa/global/$USER'
Expand All @@ -250,8 +250,8 @@ def edit_baseconfig():
queue = 'batch'
queue_service = 'service'
partition_batch = 'orion'
chgrp_rstprod = 'NO'
chgrp_cmd = 'ls'
chgrp_rstprod = 'YES'
chgrp_cmd = 'chgrp rstprod'
hpssarch = 'NO'

if args.icsdir is not None and not os.path.exists(icsdir):
Expand Down
6 changes: 3 additions & 3 deletions ush/rocoto/setup_expt_fcstonly.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def edit_baseconfig():
elif machine == 'ORION':
base_git = '/work/noaa/global/glopara/git'
base_svn = '/work/noaa/global/glopara/svn'
dmpdir = '/work/noaa/global/glopara/dump'
dmpdir = '/work/noaa/rstprod/dump'
nwprod = '/work/noaa/global/glopara/nwpara'
comroot = '/work/noaa/global/glopara/com'
homedir = '/work/noaa/global/$USER'
Expand All @@ -238,8 +238,8 @@ def edit_baseconfig():
queue = 'batch'
queue_service = 'service'
partition_batch = 'orion'
chgrp_rstprod = 'NO' # No rstprod on Orion
chgrp_cmd = 'ls'
chgrp_rstprod = 'YES'
chgrp_cmd = 'chgrp rstprod'
hpssarch = 'NO'

# COMROT directory
Expand Down

0 comments on commit 7233d0c

Please sign in to comment.