Skip to content

Commit

Permalink
Update srw_ftest.sh to Adjust for strict limitation of stack size
Browse files Browse the repository at this point in the history
  • Loading branch information
BruceKropp-Raytheon committed Jul 20, 2023
1 parent 4c80a54 commit a44fc58
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .cicd/scripts/srw_ftest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ set -e -u

export PYTHONPATH=${workspace}/ush/python_utils/workflow-tools:${workspace}/ush/python_utils/workflow-tools/src

# Adjust for strict limitation of stack size
sed "s|ulimit -s unlimited;|ulimit -S -s unlimited;|" -i ${workspace}/ush/machine/hera.yaml

cd ${workspace}/ush
# Consistency check ...
#./config_utils.py -c ./config.yaml -v ./config_defaults.yaml -k "(\!rocoto\b)"
Expand Down Expand Up @@ -127,7 +130,6 @@ status=0

# Limit to machines that are fully ready
deny_machines=( gaea )
#sed "s|ulimit -s unlimited;|ulimit -S -s unlimited;|" -i ${workspace}/ush/machine/hera.yaml
if [[ ${deny_machines[@]} =~ ${platform,,} ]] ; then
echo "# Deny ${platform} - incomplete configuration." | tee -a ${results_file}
else
Expand Down

0 comments on commit a44fc58

Please sign in to comment.