mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 16:51:55 +00:00
* 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
17 lines
506 B
Go
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"
|
|
)
|