sourcegraph/dev/tools.go
Keegan Carruthers-Smith 60afebac64
Remove vendor (#379)
* git rm -r vendor

* ci: Remove go mod vendor check

* all: remove direct uses of vendor

* all: Specify GO111MODULE=on and GOBIN for generate

* ci: Enable go modules when generating pipeline

* ci: Enable go modules for every pipeline step

* ci: Use count flag to force test run instead of disabling GOCACHE

* ci: Use next branch of honnef.co/go/tools

master currently does not support go modules, but next should.

* all: Update to pass next branch of staticcheck
2018-10-15 11:27:49 +02:00

17 lines
506 B
Go

// +build tools
package main
import (
_ "github.com/google/zoekt/cmd/zoekt-archive-index"
_ "github.com/google/zoekt/cmd/zoekt-sourcegraph-indexserver"
_ "github.com/google/zoekt/cmd/zoekt-webserver"
_ "github.com/kevinburke/differ"
_ "github.com/kevinburke/go-bindata/go-bindata"
_ "github.com/mattn/goreman"
_ "github.com/sourcegraph/go-jsonschema/cmd/go-jsonschema-compiler"
_ "github.com/sourcegraph/godockerize"
_ "golang.org/x/tools/cmd/stringer"
_ "honnef.co/go/tools/cmd/staticcheck"
)