Skip to content

Commit 0df00ef

Browse files
frouiouidbussink
authored andcommitted
use bootstrap version 41
Signed-off-by: Florent Poinsard <florent.poinsard@outlook.fr>
1 parent c259558 commit 0df00ef

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ $(PROTO_GO_OUTS): minimaltools install_protoc-gen-go proto/*.proto
286286
# This rule builds the bootstrap images for all flavors.
287287
DOCKER_IMAGES_FOR_TEST = mysql80 percona80
288288
DOCKER_IMAGES = common $(DOCKER_IMAGES_FOR_TEST)
289-
BOOTSTRAP_VERSION=40
289+
BOOTSTRAP_VERSION=41
290290
ensure_bootstrap_version:
291291
find docker/ -type f -exec sed -i "s/^\(ARG bootstrap_version\)=.*/\1=${BOOTSTRAP_VERSION}/" {} \;
292292
sed -i 's/\(^.*flag.String(\"bootstrap-version\",\) *\"[^\"]\+\"/\1 \"${BOOTSTRAP_VERSION}\"/' test.go

test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ For example:
7777
// Flags
7878
var (
7979
flavor = flag.String("flavor", "mysql80", "comma-separated bootstrap flavor(s) to run against (when using Docker mode). Available flavors: all,"+flavors)
80-
bootstrapVersion = flag.String("bootstrap-version", "40", "the version identifier to use for the docker images")
80+
bootstrapVersion = flag.String("bootstrap-version", "41", "the version identifier to use for the docker images")
8181
runCount = flag.Int("runs", 1, "run each test this many times")
8282
retryMax = flag.Int("retry", 3, "max number of retries, to detect flaky tests")
8383
logPass = flag.Bool("log-pass", false, "log test output even if it passes")

test/templates/dockerfile.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG bootstrap_version=40
1+
ARG bootstrap_version=41
22
ARG image="vitess/bootstrap:${bootstrap_version}-{{.Platform}}"
33

44
FROM "${image}"

0 commit comments

Comments
 (0)