Add version check and rustup
This commit is contained in:
parent
af8a36b7fb
commit
b982595c73
|
@ -2,6 +2,13 @@
|
||||||
|
|
||||||
cd "$(dirname "$0")/.."
|
cd "$(dirname "$0")/.."
|
||||||
|
|
||||||
|
if ! ci/version-check.sh stable; then
|
||||||
|
# This job doesn't run within a container, try once to upgrade tooling on a
|
||||||
|
# version check failure
|
||||||
|
rustup install stable
|
||||||
|
ci/version-check.sh stable
|
||||||
|
fi
|
||||||
|
|
||||||
DRYRUN=
|
DRYRUN=
|
||||||
if [[ -z $BUILDKITE_BRANCH ]] || ./ci/is-pr.sh; then
|
if [[ -z $BUILDKITE_BRANCH ]] || ./ci/is-pr.sh; then
|
||||||
DRYRUN="echo"
|
DRYRUN="echo"
|
||||||
|
|
Loading…
Reference in New Issue