Skip to content

Commit a59a1c5

Browse files
craig[bot]benesch
craig[bot]
andcommitted
Merge #27597
27597: build: upgrade to go1.10.3 r=tschottdorf a=benesch go1.10 has a bug in its test2json tool that causes test names with colons in them to be misparsed (golang/go#23920). This was causing the nightly stress issue poster to incorrectly post dozens of issues about tests that had not actually failed. Upgrade the builder to go1.10.3, which includes a fix for the test2json tool. Fix #27498. Release note: None Co-authored-by: Nikhil Benesch <[email protected]>
2 parents d8a546b + 45ec4be commit a59a1c5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build/builder.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -euo pipefail
44

55
image=cockroachdb/builder
6-
version=20180709-143159
6+
version=20180715-164923
77

88
function init() {
99
docker build --tag="${image}" "$(dirname "${0}")/builder"

build/builder/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,8 @@ ENV PATH $PATH:/x-tools/x86_64-apple-darwin13/bin
147147
# releases of Go will no longer be run in CI once it is changed. Consider
148148
# bumping the minimum allowed version of Go in /build/go-version-chech.sh.
149149
RUN apt-get install -y --no-install-recommends golang \
150-
&& curl -fsSL https://storage.googleapis.com/golang/go1.10.src.tar.gz -o golang.tar.gz \
151-
&& echo 'f3de49289405fda5fd1483a8fe6bd2fa5469e005fd567df64485c4fa000c7f24 golang.tar.gz' | sha256sum -c - \
150+
&& curl -fsSL https://storage.googleapis.com/golang/go1.10.3.src.tar.gz -o golang.tar.gz \
151+
&& echo '567b1cc66c9704d1c019c50bef946272e911ec6baf244310f87f4e678be155f2 golang.tar.gz' | sha256sum -c - \
152152
&& tar -C /usr/local -xzf golang.tar.gz \
153153
&& rm golang.tar.gz \
154154
&& cd /usr/local/go/src \

0 commit comments

Comments
 (0)