mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-28 04:17:17 +00:00
* chore: Migrate CI to GitHub actions * Do not install golangci-lint, we use the action * Integrate codecov.io upload * Use some better names for analyze job & steps * go mod tidy * Update tools * Disable CircleCI completely * Satisfy CircleCI with a dummy step until it's disabled
9 lines
514 B
Bash
Executable file
9 lines
514 B
Bash
Executable file
#!/bin/bash
|
|
set -eux -o pipefail
|
|
|
|
GO111MODULE=on go get github.com/gogo/protobuf/gogoproto@v1.3.1
|
|
GO111MODULE=on go get sigs.k8s.io/controller-tools/cmd/controller-gen@v0.2.3
|
|
GO111MODULE=on go get github.com/golang/protobuf/protoc-gen-go@v1.3.1
|
|
GO111MODULE=on go get github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway@v1.9.2
|
|
GO111MODULE=on go get github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger@v1.9.2
|
|
GO111MODULE=on go get golang.org/x/tools/cmd/goimports@v0.0.0-20190627203933-19ff4fff8850
|