mirror of
https://github.com/golang/go
synced 2024-11-06 03:16:10 -07:00
0a06c69952
Govim integration tests are now passing at govim HEAD + gopls HEAD, so we should be able to start actively investigating any regressions on the gopls side after this change. Change-Id: Ibf50d7e42e19cfc80779691e2c42f643028b2e39 Reviewed-on: https://go-review.googlesource.com/c/tools/+/215897 Reviewed-by: Rebecca Stambler <rstambler@golang.org>
25 lines
1.2 KiB
Docker
25 lines
1.2 KiB
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:go1.13.5_vim_v8.1.2414_v1
|
|
|
|
# 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 \
|
|
GOVIM_VERSION=v0.0.27-0.20200122085353-96e61d22452d
|
|
WORKDIR /src
|
|
|
|
# Get govim, as well as all dependencies for the ./cmd/govim tests. In order to
|
|
# use the go command's module version resolution, we use `go mod download` for
|
|
# this rather than git. Another approach would be to use a temporary module and
|
|
# `go get -t -u github.com/govim/govim`, but that may cause test dependencies
|
|
# to be upgraded.
|
|
RUN GOVIM_DIR=$(go mod download -json github.com/govim/govim@$GOVIM_VERSION | jq -r .Dir) && \
|
|
cp -r $GOVIM_DIR /src/govim && cd /src/govim && \
|
|
go list -test -deps ./cmd/govim
|