Go to file
James Thomson aa509fef31 web: fix ambiguous benchmark module name
Signed-off-by: James Thomson <jthomson@pivotal.io>
2019-05-16 10:04:06 -04:00
.github stop auto-labeling 'triage' 2019-04-10 14:59:06 -04:00
atc add logging to build log collector 2019-05-14 11:01:25 -04:00
ci ci, web: add elm benchmarking 2019-05-15 16:18:58 -04:00
cmd/concourse Merge pull request #3848 from edtan/check-session-signing-key 2019-05-14 11:09:06 -04:00
examples Rename Parallel to InParallel and nest yaml configuration 2019-04-09 13:25:24 +02:00
fly Merge pull request #3801 from cappyzawa/feature/get-team 2019-05-09 17:08:22 -04:00
go-concourse Config => Team 2019-05-03 06:14:09 +09:00
hack package mdi svg icons 2019-03-29 18:29:53 +01:00
screenshots add 2x scaled screenshot for hidpi laptops 2018-09-19 10:36:30 -04:00
skymarshal Add tools.go to keep track of tool versions 2019-04-08 15:57:27 -04:00
testflight Support for On_error 2019-04-01 13:15:07 -04:00
topgun Merge pull request #3825 from concourse/k8s/creds-caching 2019-05-07 14:56:13 -04:00
tsa Update tls & ssh config 2019-04-24 15:11:39 -04:00
web web: fix ambiguous benchmark module name 2019-05-16 10:04:06 -04:00
worker Add tools.go to keep track of tool versions 2019-04-08 15:57:27 -04:00
.dockerignore flesh out CONTRIBUTING.md 2018-09-25 14:18:48 -04:00
.env run watsjs/testflight against prebuilt Concourse 2018-10-01 17:10:35 -04:00
.gitignore ignore idea files 2019-05-10 11:07:25 +02:00
CODE_OF_CONDUCT.md move important docs to root 2018-11-20 11:17:20 -05:00
CONTRIBUTING.md ci, web: add elm benchmarking 2019-05-15 16:18:58 -04:00
Dockerfile ci: rework how we use Docker Compose in CI 2019-03-14 12:03:53 -04:00
LICENSE.md re-init 2018-09-18 15:26:17 -04:00
NOTICE.md say "Present" in NOTICE.md 2019-04-09 16:08:20 -04:00
README.md README: include a link to the public GH Project board 2018-12-08 17:45:45 +00:00
docker-compose.yml web: add cluster name to docker-compose.yml 2019-04-23 13:29:10 -04:00
go.mod Merge branch 'cache-cred-mgr-lookups' of https://github.com/ralekseenkov/concourse into ralekseenkov-cache-cred-mgr-lookups 2019-05-01 14:25:50 -04:00
go.sum Merge branch 'cache-cred-mgr-lookups' of https://github.com/ralekseenkov/concourse into ralekseenkov-cache-cred-mgr-lookups 2019-05-01 14:25:50 -04:00
package.json web: fix ambiguous benchmark module name 2019-05-16 10:04:06 -04:00
tools.go Add tools.go to keep track of tool versions 2019-04-08 15:57:27 -04:00
versions.go atc: permanent unique version history for base types 2019-02-13 15:15:45 -05:00
yarn.lock ci, web: add elm benchmarking 2019-05-15 16:18:58 -04:00

README.md

Concourse: the continuous thing-doer.

Concourse is an automation system written in Go. It is most commonly used for CI/CD, and is built to scale to any kind of automation pipeline, from simple to complex.

booklit pipeline

Concourse is very opinionated about a few things: idempotency, immutability, declarative config, stateless workers, and reproducible builds.

Installation

Concourse is distributed as a single concourse binary, available on the Downloads page.

If you want to just kick the tires, jump ahead to the Quick Start.

In addition to the concourse binary, there are a few other supported formats. Consult their GitHub repos for more information:

Quick Start

$ wget https://concourse-ci.org/docker-compose.yml
$ docker-compose up
Creating docs_concourse-db_1 ... done
Creating docs_concourse_1    ... done

Concourse will be running at 127.0.0.1:8080. You can log in with the username/password as test/test.

Next, install fly by downloading it from the web UI and target your local Concourse as the test user:

$ fly -t ci login -c http://127.0.0.1:8080 -u test -p test
logging in to team 'main'

target saved

Configuring a Pipeline

There is no GUI for configuring Concourse. Instead, pipelines are configured as declarative YAML files:

resources:
- name: booklit
  type: git
  source: {uri: "https://github.com/vito/booklit"}

jobs:
- name: unit
  plan:
  - get: booklit
    trigger: true
  - task: test
    file: booklit/ci/test.yml

Most operations are done via the accompanying fly CLI. If you've got Concourse installed, try saving the above example as booklit.yml, target your Concourse instance, and then run:

fly -t $target set-pipeline -p booklit -c booklit.yml

These pipeline files are self-contained, maximizing portability from one Concourse instance to the next.

Learn More

Contributing

Our user base is basically everyone that develops software (and wants it to work).

It's a lot of work, and we need your help! If you're interested, check out our contributing docs.