For questions specifically related to the configuration and usage of Pipelines in Concourse - the CI system written in Go. When using this tag also include the more generic [concourse] tag where possible.
Questions tagged [concourse-pipeline]
64 questions
1
vote
1 answer
Which concourse resource should be used to execute grunt commands
I have UI project which is using GRUNT to perform build and tests. When I try to invoke tests within concourse task which resource image I should use where grunt is already installed. I am getting this below error now.
/bin/bash: line 4: grunt:…

user1614862
- 3,701
- 7
- 29
- 46
1
vote
2 answers
How can I add versioning to concourse pipeline?
After issuing a fly command to a Concourse pipeline, I would like to version this new pipeline.
I have tried maintain a separate `version' file on GIT repo.
But my requirement is to display this version on pipeline job name.
Please see the image…

Gurudutt Marathe
- 45
- 12
0
votes
0 answers
Pull and run docker image from docker hub using Concourse pipeline
I have pushed the image to docker hub and now trying to pull the docker image from docker hub into Ec2 instance and run that image using CONCCOURSE.
Image is pushed to docker hub.
Unable to pull image from docker hub using concourse
Unable to run…
0
votes
0 answers
Unable to build the image using the repo gcr.io/cloud-builders/docker in concourse
This is my task in concourse pipeline, where I'm using the repository gcr.io/cloud-builders/docker to build the image.
But I'm getting below error message,
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon…

Ammi
- 11
- 4
0
votes
0 answers
Pre steps in docker build with Concourse
I have a concourse pipeline I use to build docker images using this resource. This is a code example:
- put: build-image.spilo
params:
build: git.spilo-dockerfile/
build_args: {}
tag_as_latest: true
tag_file:…

Salvatore D'angelo
- 1,019
- 3
- 14
- 39
0
votes
0 answers
testing-library/react failed tsx file in concourse pipeline
For some reason, my tests are running fine locally, but failed during concourse CI pipeline test. I compared npx jest --showConfg with local setup, I don't see the difference that will cause the issue. It is strange that the other .tsx tests are…

fongfong
- 175
- 3
- 14
0
votes
0 answers
Concourse - Pipeline returns "Detecting the current branch failed: fatal: ref HEAD is not a symbolic ref"
I am running a maven release plugin in concourse pipeline. Our Git is in GitHub Enterprise and so is our Artifactory.
I am getting the resource, I am able to build it and release a snapshot to Artifactory using deploy. But when I go for the release…

code_warrior
- 1
- 3
0
votes
0 answers
Maven Test is not running in quark-concourse pipeline
The test cases are running locally fine but on concourse pipeline its shows no test is nunning.
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
These are the plugins used in application:
And on console of IntelliJ the following logs are…

Jimmy
- 995
- 9
- 18
0
votes
0 answers
Run localstack Integration test in Pipeline
I am trying to run the integration test with localstack container in pipeline. It runs fine locally but it is ignored in pipeline (Concourse). If I run the test without docker desktop, it is again ignored when I use mvn clean test…

nabin bhatta
- 1
- 2
0
votes
1 answer
Get only the pr form a git branch in concourse
- name: databricks-repo
type: git
icon: github-circle
source:
uri: xyz.git
branch: master
private_key: ((key))
I am trying to do a code scan only to the PR from the git branch. the above code gets me only the code from the branch not…

Sanjay
- 1
- 1
0
votes
2 answers
Once off configuration builds in concourse
I am trying to trigger once off build for setting configurations for a GitHub Repo. Like configuring webhooks to a GitHub repo. Right now we have a job that we trigger manually to set webhooks, we are looking to automate it!
I tried to use time…

Arun Senthoor Pandian
- 221
- 1
- 3
- 7
0
votes
1 answer
Coordinate Concourse CI Same-Repo Checks?
I have a Concourse CI pattern where multiple pipelines are defined in one repo. I want to test the entire repository, and then only when certain files have changed (i.e. the pipeline-specific YAML) apply those pipelines which have changed. It mostly…
0
votes
1 answer
Concourse cannot run on macBook M1chip
I am trying to run the concourse locally and I am using their documentation posted on :
https://concourse-ci.org/quick-start.html but when I am running the docker compose up and start download all resources at the end is showing this line:
concourse…

RulerNature
- 693
- 4
- 13
- 40
0
votes
1 answer
How to give input parameter to the concourse pipeline on the pipeline page and trigger the job similar to jenkins
I would like to know if it is possible to give inputs to a concourse pipeline from the UI.
I know we can add input details to a git repo and read from the repo, but for every tiny input I need to do a code commit.
For this scenario is Jenkins better…

Venkatesh G
- 3
- 1
0
votes
0 answers
How to trigger a job in Concourse pipeline when feature branch is deleted?
I am looking for an option to trigger a job automatically whenever a feature branch is deleted in git.
For e.g I have two feature branches and if one is deleted, should trigger a Job and Job should know which feature branch is deleted.
Reference -…

Coder
- 1
- 1