[CI] Document the use of Docker wrapper script (#8297)

* [CI] Document the use of Docker wrapper script

* Grammer fixes

* Document buildkite pipeline defs

* tests/buildkite/*.sh isn't meant to run locally
This commit is contained in:
Philip Hyunsu Cho
2022-10-02 12:45:00 -07:00
committed by GitHub
parent 9af99760d4
commit 37886a5dff
2 changed files with 80 additions and 5 deletions

View File

@@ -3,6 +3,13 @@
set -euo pipefail
set -x
if [[ -z ${BUILDKITE:-} ]]
then
echo "$0 is not meant to run locally; it should run inside BuildKite."
echo "Please inspect the content of $0 and locate the desired command manually."
exit 1
fi
if [[ -n $BUILDKITE_PULL_REQUEST && $BUILDKITE_PULL_REQUEST != "false" ]]
then
is_pull_request=1