mirror of
https://github.com/golang/go
synced 2024-11-19 05:54:44 -07:00
32 lines
1.0 KiB
Bash
32 lines
1.0 KiB
Bash
|
#!/bin/bash -e
|
||
|
|
||
|
# Run govim integration tests against a local gopls.
|
||
|
# TODO(findleyr): this script assumes that docker may be run without sudo.
|
||
|
# Update it to escalate privileges if and only if necessary.
|
||
|
|
||
|
# Find the tools root, so that this script can be run from any directory.
|
||
|
script_dir=$(dirname "$(readlink -f "$0")")
|
||
|
tools_dir=$(readlink -f "${script_dir}/../../..")
|
||
|
|
||
|
# Build gopls.
|
||
|
cd "${tools_dir}/gopls"
|
||
|
temp_gopls=$(mktemp -p "$PWD")
|
||
|
trap "rm -f \"${temp_gopls}\"" EXIT
|
||
|
go build -o "${temp_gopls}"
|
||
|
|
||
|
# Build the test harness. Here we are careful to pass in a very limited build
|
||
|
# context so as to optimize caching.
|
||
|
cd "${tools_dir}"
|
||
|
docker build -t gopls-govim-harness -f gopls/integration/govim/Dockerfile \
|
||
|
gopls/integration/govim
|
||
|
|
||
|
# Run govim integration tests.
|
||
|
echo "running govim integration tests using ${temp_gopls}"
|
||
|
temp_gopls_name=$(basename "${temp_gopls}")
|
||
|
docker run --rm -t \
|
||
|
-v "${tools_dir}:/src/tools" \
|
||
|
-w "/src/mod" \
|
||
|
gopls-govim-harness \
|
||
|
go test github.com/govim/govim/cmd/govim \
|
||
|
-gopls "/src/tools/gopls/${temp_gopls_name}"
|