Skip to content

Commit bee7b50

Browse files
Merge pull request #13 from MichaelLueken/feature/lbcs_fcst_cycles
Feature/lbcs fcst cycles - bring recent changes from #1384 (#1384)
2 parents f1e82a4 + f1539d1 commit bee7b50

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

.cicd/scripts/wrapper_srw_ftest.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,11 @@ fi
4747

4848
# Call job card and return job_id
4949
echo "Running: ${workflow_cmd} -A ${SRW_PROJECT} ${arg_1} ${WORKSPACE}/${SRW_PLATFORM}/.cicd/scripts/${workflow_cmd}_srw_ftest.sh"
50-
job_id=$(${workflow_cmd} -A ${SRW_PROJECT} ${arg_1} ${WORKSPACE}/${SRW_PLATFORM}/.cicd/scripts/${workflow_cmd}_srw_ftest.sh)
50+
if [[ "${SRW_PLATFORM}" == gaeac6 ]]; then
51+
job_id=$(${workflow_cmd} -A ${SRW_PROJECT} ${arg_1} ${WORKSPACE}/${SRW_PLATFORM}/.cicd/scripts/${workflow_cmd}_srw_ftest.sh) | awk -F';' '{print $1}'
52+
else
53+
job_id=$(${workflow_cmd} -A ${SRW_PROJECT} ${arg_1} ${WORKSPACE}/${SRW_PLATFORM}/.cicd/scripts/${workflow_cmd}_srw_ftest.sh)
54+
fi
5155

5256
echo "Waiting ten seconds for node to initialize"
5357
sleep 10

doc/conf.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,10 @@
132132
r'https://gsl.noaa.gov/research/predictions',
133133
r'https://fvcom.smast.umassd.edu',
134134
r'https://www.nssl.noaa.gov/',
135+
r'https://epic.noaa.gov/unified-post-processor/',
136+
r'https://epic.noaa.gov/',
137+
r'https://ufs.epic.noaa.gov/applications/',
138+
r'https://ufs.epic.noaa.gov/',
135139
]
136140

137141
# Ignore anchor tags for SRW App data bucket. Shows Not Found even when they exist.

0 commit comments

Comments
 (0)