Questions tagged [concourse]

For questions related to pipeline-based CI system Concourse written in Go.

Concourse is an open source continuous integration and continuous delivery (CI/CD) system designed for teams that practice test-driven development and continuous delivery.

Teams automate delivery of their software as pipelines which execute testing, packaging, and deployment as often as every commit.

Concourse pipelines are configured via YAML. Pipelines can scale to projects of any complexity. Pipelines are displayed visually to show the status of build runs.

Concourse provides dependable, repeatable results that behave the same in any Concourse deployment, on any cloud.

Concourse provides a wide variety of predefined integrations with external systems, and an open approach for defining custom integrations.

See also: - Documentation - GitHub Repository

419 questions
0
votes
1 answer

what is the purpose of -exc, export TERM=dumb in concourse yml file?

Can someone tell me what the purpose of "-exc", "|", and "export TERM=dumb" in concourse .yaml file? run: path: sh args: - -exc - | export TERM=dumb
dab
  • 57
  • 3
0
votes
1 answer

Concourse trigger from 2 weeks after the previous job is done

I need to create a trigger that will execute a task 2 weeks after it has been called. This is for a git merge where I merge a branch into master using the concourse pipeline and then want concourse to automatically delete the branch 2 weeks after…
0
votes
1 answer

Concourse CI will not run Hello-World after setting up with the official docker image. It fails showing "no workers"

I recently set up concourse CI using the following docker-compose: https://concourse-ci.org/docker-repository.html and then tried the flight school training here: https://concourse-ci.org/flight-school.html and then, when that failed showing "no…
Vidia
  • 471
  • 5
  • 17
0
votes
1 answer

concourse gradle java build CI

I am attempting to make a concourse CI pipeline for a java / gradle (vertx) build. I am getting similar error when using the gradle docker image to run the build from concourse or when running locally (directly using the same docker image) PS…
Gadi
  • 1,539
  • 22
  • 37
0
votes
1 answer

How to build last tag with concourse ci?

Is it possible to build on the last tag with concourse? Similar to /tags/ in the branch specifier with jenkins.
ecl0
  • 385
  • 1
  • 3
  • 13
0
votes
2 answers

Can we trigger concourse job with HTTP request?

I would like to configure my slack outgoing webhook such that it can trigger concourse job over http. Is there a way that we can trigger concourse jobs via http requests instead of manually clicking on job from web UI?
0
votes
1 answer

Concourse publishing meta data

Is there any best practise for publishing meta data, like a test coverage report, via Concourse? Zipping and putting to a git repo is not that nice.
El Gohr
  • 177
  • 1
  • 12
0
votes
1 answer

Councourse CI on Windows Git pull job always shows waiting for a suitable set of input versions

We installed Concourse CI on Windows 8 Machine. Plan is to use this for a .NET project. Basic samples are working fine. However, when we tried with simple Git pull, the job is always in pending state. And it shows following message: The job…
Sheik-Masha
  • 113
  • 6
0
votes
1 answer

Adding bind-mounts to the containers for running a task in concourse

I want to access the docker socket on the host where my worker runs while executing task. When running a "regular" docker container I can just bind-mount the socket into the container. Can I some how do the same when specifying a task in concourse?
derfred
  • 18,881
  • 3
  • 23
  • 25
0
votes
1 answer

How to setup external concourse workers?

I have a concourse-web and concourse-server instance but am having issues getting the worker to successfully connect with the web-server. Apr 21 15:42:26 concourse-worker concourse[24460]:…
ecl0
  • 385
  • 1
  • 3
  • 13
0
votes
0 answers

Concourse ci resolve docker hostname

I currently have two Docker containers running: 1- Is running concourse ci 2- Is running arifactory Both containers are in the same docker network. In concourse I use the artifactory resource as follows: resources: - name: artifactory-repository …
user1449511
  • 423
  • 2
  • 4
  • 11
0
votes
1 answer

concourse tagged replease deployment

I want to auto deploy tagged releases using concourse. For example, if I tag a release as "stage" it will deploy to staging. There is a tag_filter option for the concourse git resource to do this. The problem is that it needs to know the branch name…
retroman
  • 175
  • 1
  • 11
0
votes
0 answers

docker type needed to build .netcore app

I am using concourse to deploy a .netcore app the problem i am having is that i need to run dotnet publish --configuration release get the resulting publish folder and publish it to cloud foundry. what can I use instead of this for a docker image…
jedgard
  • 868
  • 3
  • 23
  • 41
0
votes
1 answer

Concourse CI + MVN + PCF issue

I am trying to create a pipeline using Concourse CI. The pipeline should: Get the code from git. Build and package everything using maven. Push generated artifact (target/*war) to Cloud Foundry. Steps 1 and 2 are executed successfully but after…
Rodney
  • 53
  • 1
  • 5
0
votes
1 answer

How to use files within salt directory for cmd.run?

I want to run a command (cmd.run) which uses files within the salt directory, for example: fly_set_{{ pipeline }}: cmd.run: - name: | fly -t ci set-pipeline -p {{ pipeline }} -c pipeline.yml -l credentials.yml - require: -…
blane
  • 9
  • 6