mirror of
https://github.com/golang/go
synced 2024-11-06 14:26:22 -07:00
17a19b5fe7
govim integration tests (and probably some real user sessions) are broken because telemetry metrics are not threadsafe, resulting in an index out of range panic. Fix this by adding a flag (labeled temporary) to disable telemetry export. Also temporarily update govim to master to pick up some fixes, and run only the -short tests to avoid timeouts. Updates golang/go#38042 Change-Id: I584e5d200c2f732bd4024002ee6253d09623b29f Reviewed-on: https://go-review.googlesource.com/c/tools/+/226057 Run-TryBot: Robert Findley <rfindley@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Cottrell <iancottrell@google.com>
21 lines
997 B
Docker
21 lines
997 B
Docker
# Copyright 2019 The Go Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
# govim requires a more recent version of vim than is available in most
|
|
# distros, so we build from their base image.
|
|
FROM govim/govim:latest-vim
|
|
|
|
# We use a pinned version of govim so that this build is repeatable, and so
|
|
# that we're not sensitive to test breakages in govim.
|
|
# TODO(findleyr): Once a version of govim has been tagged containing
|
|
# https://github.com/govim/govim/pull/629, switch this to @latest.
|
|
ENV GOPROXY=https://proxy.golang.org GOPATH=/go VIM_FLAVOR=vim
|
|
WORKDIR /src
|
|
|
|
# Clone govim. In order to use the go command for resolving latest, we download
|
|
# a redundant copy of govim to the build cache using `go mod download`.
|
|
RUN GOVIM_VERSION=$(go mod download -json github.com/govim/govim@latest | jq -r .Version) && \
|
|
git clone https://github.com/govim/govim /src/govim && cd /src/govim && \
|
|
git checkout master
|