1
0
mirror of https://github.com/go-task/task.git synced 2024-12-14 10:52:43 +02:00
task/docs/installation.md

88 lines
2.3 KiB
Markdown
Raw Normal View History

2018-09-22 23:44:24 +02:00
# Installation
2018-10-07 23:34:03 +02:00
## Binary
2018-09-22 23:44:24 +02:00
2018-10-07 23:34:03 +02:00
Or you can download the binary from the [releases][releases] page and add to
your $PATH. DEB and RPM packages are also available.
The `task_checksums.txt` file contains the sha256 checksum for each file.
2018-09-22 23:44:24 +02:00
## Homebrew
If you're on macOS or Linux and have [Homebrew][homebrew] installed, getting
Task is as simple as running:
2018-09-22 23:44:24 +02:00
```bash
brew install go-task/tap/go-task
```
> This installation method is only currently supported on amd64 architectures.
2018-09-22 23:44:24 +02:00
## Snap
Task is available for [Snapcraft][snapcraft], but keep in mind that your
Linux distribution should allow classic confinement for Snaps to Task work
right:
```bash
sudo snap install task
```
## Scoop
If you're on Windows and have [Scoop][scoop] installed, use `extras` bucket
to install Task like:
```cmd
scoop bucket add extras
scoop install task
```
This installation method is community owned. After a new release of Task, it
may take some time until it's available on Scoop.
2018-10-07 23:34:03 +02:00
## Go
Task now uses [Go Modules](https://github.com/golang/go/wiki/Modules), which
means you may have trouble compiling it on older Go versions or using
`$GOPATH`.
For CI environments we recommend using the [Install Script](#install-script)
instead, which is faster and more stable, since it'll just download the latest
released binary, instead of compiling the edge (master branch) version.
Installing in another directory:
```bash
git clone https://github.com/go-task/task
cd task
# compiling binary to $GOPATH/bin
go install -v ./cmd/task
# compiling it to another location
# use -o ./task.exe on Windows
go build -v -o ./task ./cmd/task
```
Both methods requires having the [Go][go] environment properly setup locally.
2018-09-22 23:44:24 +02:00
## Install script
We also have a [install script][installscript], which is very useful on
2019-01-02 17:25:58 +02:00
scenarios like CIs. Many thanks to [godownloader][godownloader] for allowing
2018-10-07 23:34:03 +02:00
easily generating this script.
2018-09-22 23:44:24 +02:00
```bash
curl -sL https://taskfile.dev/install.sh | sh
2018-09-22 23:44:24 +02:00
```
2018-10-07 23:34:03 +02:00
> This method will download the binary on the local `./bin` directory by default.
2018-09-22 23:44:24 +02:00
2018-10-07 23:34:03 +02:00
[go]: https://golang.org/
2018-09-22 23:44:24 +02:00
[snapcraft]: https://snapcraft.io/
[homebrew]: https://brew.sh/
[installscript]: https://github.com/go-task/task/blob/master/install-task.sh
[releases]: https://github.com/go-task/task/releases
[godownloader]: https://github.com/goreleaser/godownloader
[scoop]: https://scoop.sh/