sourcegraph/dev/tools.go
Keegan Carruthers-Smith a581e7027a
dev: download caddy binaries (#9303)
This uses the same pattern we use for docsite and jaeger. This avoids including
all the dependencies of caddy as well as avoiding the need to build it.
2020-03-25 10:37:04 +02:00

32 lines
875 B
Go

// +build tools
package main
import (
// dev/go-install.sh has debug support
_ "github.com/go-delve/delve/cmd/dlv"
// dev/check/go-lint.sh
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
// zoekt-* used in sourcegraph/server docker image build
_ "github.com/google/zoekt/cmd/zoekt-archive-index"
_ "github.com/google/zoekt/cmd/zoekt-sourcegraph-indexserver"
_ "github.com/google/zoekt/cmd/zoekt-webserver"
// go-bindata is used in lots of our gen.go files
_ "github.com/kevinburke/go-bindata/go-bindata"
// goreman is used by our local dev environment
_ "github.com/mattn/goreman"
// vfsgendev is used for packing static assets into .go files.
_ "github.com/shurcooL/vfsgen/cmd/vfsgendev"
// used in schema pkg
_ "github.com/sourcegraph/go-jsonschema/cmd/go-jsonschema-compiler"
// used in many places
_ "golang.org/x/tools/cmd/stringer"
)