mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-22 01:17:16 +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
10 lines
426 B
Bash
Executable file
10 lines
426 B
Bash
Executable file
#!/bin/bash
|
|
set -eux -o pipefail
|
|
|
|
. $(dirname $0)/../tool-versions.sh
|
|
|
|
[ -e $DOWNLOADS/protoc.zip ] || curl -sLf --retry 3 -o $DOWNLOADS/protoc.zip https://github.com/protocolbuffers/protobuf/releases/download/v${protoc_version}/protoc-${protoc_version}-linux-x86_64.zip
|
|
unzip $DOWNLOADS/protoc.zip bin/protoc -d /usr/local/
|
|
chmod +x /usr/local/bin/protoc
|
|
unzip $DOWNLOADS/protoc.zip include/* -d /usr/local/
|
|
protoc --version
|