diff options
Diffstat (limited to '.buildkite/verify.adhoc.pipeline.sh')
-rwxr-xr-x | .buildkite/verify.adhoc.pipeline.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.buildkite/verify.adhoc.pipeline.sh b/.buildkite/verify.adhoc.pipeline.sh new file mode 100755 index 0000000000..e72ded85dc --- /dev/null +++ b/.buildkite/verify.adhoc.pipeline.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +# exit immediately on failure, or if an undefined variable is used +set -eu + +echo "---" +echo "env:" +echo " BUILD_TIMESTAMP: $(date +%Y-%m-%d_%H-%M-%S)" +echo "steps:" +echo "" + +# include build and test omnibus pipeline +DIR="${BASH_SOURCE%/*}" +if [[ ! -d "$DIR" ]]; then DIR="$PWD"; fi +source "$DIR/build-test-omnibus.sh"
\ No newline at end of file |