concourse/fly
Taylor Silva 86386ebbc0
Merge pull request #8933 from hlreyes/team-scoped-clear-task-cache
Add `--team` flag to `clear-task-cache` command
2024-04-04 10:39:33 -04:00
..
commands Merge pull request #8933 from hlreyes/team-scoped-clear-task-cache 2024-04-04 10:39:33 -04:00
config added support for local task development and task params, see #454 2018-11-19 09:53:56 -10:00
eventstream atc + web: Add reset character in WaitingForStreamedVolume event render 2023-06-13 19:43:29 -07:00
images move everything under ./fly 2018-09-18 15:25:35 -04:00
integration fly: add --team flag to clear-task-cache 2024-04-02 11:57:37 -04:00
pty goimports all files 2021-10-08 12:50:28 -04:00
rc refactor: move from io/ioutil to io and os packages 2023-06-18 16:54:49 +08:00
scripts continue update test syntax for ginkgo v2 2023-03-11 00:11:23 -05:00
ui fix fly ui color test 2023-12-29 23:08:55 -05:00
version test: update references to use ginkgo/v2 2023-03-10 17:33:13 -05:00
.gitignore move everything under ./fly 2018-09-18 15:25:35 -04:00
README.md continue update test syntax for ginkgo v2 2023-03-11 00:11:23 -05:00
main.go fly: when prompt a fly command to run, use full fly path the is invoked instead of just hardcode "fly". 2019-08-15 10:37:11 -07:00

README.md

fly

A command line interface that runs a build in a container with ATC.

The documentation is hosted together with Concourse's docs.

A good place to start learning about Concourse is its documentation or its BOSH release.

Reporting Issues and Requesting Features

Please report all issues and feature requests in concourse/concourse.

Building

Fly is built using Go. Building and testing fly is most easily done from a checkout of concourse.

  1. Check out concourse and update submodules:
git clone --recursive https://github.com/concourse/concourse.git
cd concourse
  1. You can now build the fly binary with go build:
cd fly
go build

If you are using Go 1.10 and below, run go get ./... before go build.

  1. You can also now run tests by installing and running ginkgo:
go get github.com/onsi/ginkgo/v2/ginkgo
ginkgo -r

Installing from the Concourse UI for Project Development

Fly is available for download in the lower right-hand corner of the concourse UI.

fly download links

  1. Navigate to your Concourse instance in the browser, and click the button corresponding to your OS

  2. Move the downloaded file onto your PATH

install ~/Downloads/fly /usr/local/bin
  1. Confirm availability with which fly

Upgrading Fly

Fly is not available for upgrade independently of Concourse. You can download the corresponding upgraded version of Fly via the following:

  • using the Concourse UI
  • running fly -t example sync if you already have fly locally