Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/detect_machine.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ MACHINE_ID=${RT_MACHINE:-${MACHINE_ID}}

# Append compiler
if [ $MACHINE_ID = orion ] || [ $MACHINE_ID = hera ] || [ $MACHINE_ID = cheyenne ] || [ $MACHINE_ID = jet ] || \
[ $MACHINE_ID = gaea ] || [ $MACHINE_ID = stampede ] || [ $MACHINE_ID = s4] || [ $MACHINE_ID = expanse ] ; then
[ $MACHINE_ID = gaea ] || [ $MACHINE_ID = stampede ] || [ $MACHINE_ID = s4 ] || [ $MACHINE_ID = expanse ] ; then
MACHINE_ID=${MACHINE_ID}.${RT_COMPILER}
fi

Expand Down
4 changes: 3 additions & 1 deletion tests/rt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -570,9 +570,11 @@ if [[ $ECFLOW == true ]]; then
MAX_BUILDS=10
MAX_JOBS=30

# Reduce maximum number of compile jobs on jet.intel because of licensing issues
# Reduce maximum number of compile jobs on jet.intel and s4.intel because of licensing issues
if [[ $MACHINE_ID = jet.intel ]]; then
MAX_BUILDS=5
elif [[ $MACHINE_ID = s4.intel ]]; then
MAX_BUILDS=1
fi

if [[ $MACHINE_ID = hera.* ]] && [[ ! $HOSTNAME = hecflow* ]]; then
Expand Down