From 283ae78821a4782614ece1b0556d1ecec6b59283 Mon Sep 17 00:00:00 2001 From: William A Rowe Jr Date: Thu, 19 Nov 2020 16:39:20 -0500 Subject: [PATCH 1/4] Step 1, build 3.7.1 bazel toolchain Follow this with adopting bazel 3.7.1 for envoy, wait hours for all builds in flight Signed-off-by: William A Rowe Jr Co-authored-by: Sunjay Bhatia Co-authored-by: William A Rowe Jr --- toolchains/regenerate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchains/regenerate.sh b/toolchains/regenerate.sh index 9c2cf059..1cd4ede0 100755 --- a/toolchains/regenerate.sh +++ b/toolchains/regenerate.sh @@ -38,7 +38,7 @@ esac # Bazel query is the right command so bazel won't fail itself. # Keep bazel versions here at most two: current master version, next version -for BAZEL_VERSION in "3.6.0" "3.7.0"; do +for BAZEL_VERSION in "3.7.0" "3.7.1"; do for RBE_BAZEL_TARGET in ${RBE_BAZEL_TARGET_LIST}; do USE_BAZEL_VERSION="${BAZEL_VERSION}" bazel query ${BAZEL_QUERY_OPTIONS} ${RBE_BAZEL_TARGET} done From 290a70b53f4476287c5ed277f592e90d9607aae3 Mon Sep 17 00:00:00 2001 From: William A Rowe Jr Date: Sun, 22 Nov 2020 10:38:30 -0600 Subject: [PATCH 2/4] Passing over 3.7.0, per lizan's ask Signed-off-by: William A Rowe Jr --- toolchains/regenerate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchains/regenerate.sh b/toolchains/regenerate.sh index 1cd4ede0..220ae5ec 100755 --- a/toolchains/regenerate.sh +++ b/toolchains/regenerate.sh @@ -38,7 +38,7 @@ esac # Bazel query is the right command so bazel won't fail itself. # Keep bazel versions here at most two: current master version, next version -for BAZEL_VERSION in "3.7.0" "3.7.1"; do +for BAZEL_VERSION in "3.6.0" "3.7.1"; do for RBE_BAZEL_TARGET in ${RBE_BAZEL_TARGET_LIST}; do USE_BAZEL_VERSION="${BAZEL_VERSION}" bazel query ${BAZEL_QUERY_OPTIONS} ${RBE_BAZEL_TARGET} done From 7deb62f838d78d3ddd3665b975ea6505c261c93b Mon Sep 17 00:00:00 2001 From: William A Rowe Jr Date: Mon, 14 Dec 2020 10:26:22 -0600 Subject: [PATCH 3/4] Bump to 3.7.2 to avoid bazel issue 12545 Signed-off-by: William A Rowe Jr --- toolchains/regenerate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchains/regenerate.sh b/toolchains/regenerate.sh index 220ae5ec..ae815ec5 100755 --- a/toolchains/regenerate.sh +++ b/toolchains/regenerate.sh @@ -38,7 +38,7 @@ esac # Bazel query is the right command so bazel won't fail itself. # Keep bazel versions here at most two: current master version, next version -for BAZEL_VERSION in "3.6.0" "3.7.1"; do +for BAZEL_VERSION in "3.6.0" "3.7.2"; do for RBE_BAZEL_TARGET in ${RBE_BAZEL_TARGET_LIST}; do USE_BAZEL_VERSION="${BAZEL_VERSION}" bazel query ${BAZEL_QUERY_OPTIONS} ${RBE_BAZEL_TARGET} done From 27f2d256413a4ec7385230227599b26a62e5d1f0 Mon Sep 17 00:00:00 2001 From: Sunjay Bhatia Date: Thu, 17 Dec 2020 13:30:07 -0500 Subject: [PATCH 4/4] Kick CI Signed-off-by: Sunjay Bhatia