diff --git a/spectro/prow/presubmit.sh b/spectro/prow/presubmit.sh new file mode 100644 index 000000000000..6505bd8aee8c --- /dev/null +++ b/spectro/prow/presubmit.sh @@ -0,0 +1,26 @@ +#!/bin/bash +######################################## +# Presubmit script triggered by Prow. # +######################################## +action=$1 +if [[ ! ${action} ]]; then + action='default' +fi + +WD=$(dirname $0) +WD=$(cd $WD; pwd) +ROOT=$(dirname $WD) +#source prow/functions.sh + +commenter + +# Exit immediately for non zero status +set -e +# Check unset variables +set -u +# Print command trace +set -x + +sleep 900 + +exit 0