diff --git a/jenkins/quartz_scream.sh b/jenkins/quartz_scream.sh new file mode 100755 index 0000000..d5f34cf --- /dev/null +++ b/jenkins/quartz_scream.sh @@ -0,0 +1,17 @@ +#!/bin/bash -xle + +# boiler: every script must have these three lines +export SCRIPTROOT=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd ) +export CIME_MACHINE=quartz +source $SCRIPTROOT/util/setup_common.sh + +declare -i fails=0 +set +e +$RUNSCRIPT -t e3sm_scream -b master +if [[ $? != 0 ]]; then fails=$fails+1; fi +$RUNSCRIPT -t e3sm_scream_v1 -b master +if [[ $? != 0 ]]; then fails=$fails+1; fi + +if [[ $fails > 0 ]]; then + exit 1 +fi diff --git a/jenkins/syrah_scream.sh b/jenkins/syrah_scream.sh new file mode 100755 index 0000000..f2bee66 --- /dev/null +++ b/jenkins/syrah_scream.sh @@ -0,0 +1,17 @@ +#!/bin/bash -xle + +# boiler: every script must have these three lines +export SCRIPTROOT=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd ) +export CIME_MACHINE=syrah +source $SCRIPTROOT/util/setup_common.sh + +declare -i fails=0 +set +e +$RUNSCRIPT -b master -t e3sm_scream +if [[ $? != 0 ]]; then fails=$fails+1; fi +$RUNSCRIPT -b master -t e3sm_scream_v1 +if [[ $? != 0 ]]; then fails=$fails+1; fi + +if [[ $fails > 0 ]]; then + exit 1 +fi