From edf9c7d89c6cedff3bac23dc5e6e352d79f37082 Mon Sep 17 00:00:00 2001 From: Stas Maksimov Date: Thu, 26 Oct 2023 21:15:55 +0100 Subject: [PATCH] do NOT update build.env --- build.env | 2 +- test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.env b/build.env index 3f6cfefe6c9..ec29213df88 100755 --- a/build.env +++ b/build.env @@ -17,7 +17,7 @@ source ./tools/shell_functions.inc go version >/dev/null 2>&1 || fail "Go is not installed or is not in \$PATH. See https://vitess.io/contributing/build-from-source for install instructions." -goversion_min 1.20.10 || fail "Go version reported: `go version`. Version 1.20.10+ required. See https://vitess.io/contributing/build-from-source for install instructions." +goversion_min 1.18.7 || fail "Go version reported: `go version`. Version 1.18.7+ required. See https://vitess.io/contributing/build-from-source for install instructions." mkdir -p dist mkdir -p bin diff --git a/test.go b/test.go index df23833e06b..c4b60206d6d 100755 --- a/test.go +++ b/test.go @@ -76,7 +76,7 @@ For example: // Flags var ( flavor = flag.String("flavor", "mysql57", "comma-separated bootstrap flavor(s) to run against (when using Docker mode). Available flavors: all,"+flavors) - bootstrapVersion = flag.String("bootstrap-version", "15", "the version identifier to use for the docker images") + bootstrapVersion = flag.String("bootstrap-version", "10.3", "the version identifier to use for the docker images") runCount = flag.Int("runs", 1, "run each test this many times") retryMax = flag.Int("retry", 3, "max number of retries, to detect flaky tests") logPass = flag.Bool("log-pass", false, "log test output even if it passes")