cloud-game/hack/scripts/install_tools.sh
Sadlil Rhythom 0e17092acb Refactor of cloud game overlord and overworker (#70)
* Introduce Makefile and go vendor directory for faster build

* WIP: Refactor cloud-game codebase with spliting overlord and worker binary

* Fix all issues and have a running build

* Complete first version of refactor
2019-09-12 03:35:21 +08:00

16 lines
525 B
Bash
Executable file
Vendored

#!/usr/bin/env bash
set -o errexit
set -o nounset
set -o pipefail
echo 'Installing go tools'
go get -mod='' -u golang.org/x/tools/cmd/goimports
go get -mod='' -u github.com/onsi/ginkgo/ginkgo
go get -mod='' -u github.com/vektra/mockery/cmd/mockery
go get -mod='' github.com/golangci/golangci-lint/cmd/golangci-lint
go get -mod='' -u golang.org/x/tools/cmd/cover
go get -mod='' -u github.com/mattn/goveralls
go get -mod='' -u honnef.co/go/tools/cmd/staticcheck
go get -mod='' -u github.com/go-bindata/go-bindata/go-bindata