Install Vela
macOS
Homebrew
- Add Vela tap to your brew configuration
brew tap go-vela/vela
- Update your taps
brew update
- Install Vela CLI
brew install vela
cURL
- Download the binary
curl -L https://github.com/go-vela/cli/releases/latest/download/vela_darwin_amd64.tar.gz | tar zx
- Copy binary to $PATH
sudo cp vela /usr/local/bin/
Linux
cURL
- Download the binary
curl -L https://github.com/go-vela/cli/releases/latest/download/vela_darwin_amd64.tar.gz | tar zx
- Copy binary to $PATH
sudo cp vela /usr/local/bin/
Windows
Command Prompt
- Download the binary
curl -L https://github.com/go-vela/cli/releases/latest/download/vela_windows_amd64.tar.gz --output vela_windows_amd64.tar.gz
- Unzip the tarball
tar xzvf vela_windows_amd64.tar.gz
- Copy binary to $PATH
copy vela C:\Windows\System32/vela.exe
Windows PowerShell
- Download the binary
curl https://github.com/go-vela/cli/releases/latest/download/vela_windows_amd64.tar.gz -OutFile vela_windows_amd64.tar.gz
- Unzip the tarball
tar xzvf vela_windows_amd64.tar.gz
- Copy binary to $PATH
cp vela C:\Windows\System32/vela.exe
PowerShell 6 (PowerShell Core)
- Download the binary
curl https://github.com/go-vela/cli/releases/latest/download/vela_windows_amd64.tar.gz -OutFile vela_windows_amd64.tar.gz
- Unzip the tarball
tar xzvf vela_windows_amd64.tar.gz
- Copy binary to $PATH
cp vela C:\Windows\System32/vela.exe
Source
warning
This method is intended for developers and advanced users only.
Golang is required before continuing. To install and setup Golang, please review installation documentation
- Download the repo
go get -d github.com/go-vela/cli
- Change to the cli directory
cd ${GOPATH}/src/github.com/go-vela/cli
- Build a release binary with Go
go build -o releases/vela
- Copy binary to $PATH
sudo cp releases/vela /usr/local/bin/