Use for questions related to practices of CICD (Continuous Integration and Continuous Delivery or Continuous Deployment) and its related tools.
Questions tagged [cicd]
2046 questions
4
votes
4 answers
Bitbucket Pipelines: Build iOS for CI CD without external dependency
In Android, you can easily build an APK as long as you have Android SDK image. Then create a release (internal, beta, production) automatically on PlayStore. However Apple uses different licensing thus you will need a Mac and XCode in order to build…

Bitwise DEVS
- 2,858
- 4
- 24
- 67
4
votes
2 answers
Make sure, pipelines run sequential in gitlab
of course I am aware, that single jobs run in sequence FIFO if these jobs are pointing to a single runner, so they have to wait.
That is fine.
For a test environment, where we can only deploy & test one version at a time, we need not only single…

Chris Pillen
- 810
- 8
- 27
4
votes
2 answers
Is there a way to pre-run tests on the would-be merge commit, if branch were merged, before merge?
We are automatically running tests on feature branches. After the feature is complete and tests pass, it is merged into the main branch.
But now we have to wait for tests to run on master, before deploying it (manually).
So, is there a way to…

B Seven
- 44,484
- 66
- 240
- 385
4
votes
3 answers
remote: The project you were looking for could not be found or you don't have permission to view it
I'm getting this error while trying to deploy my branch through gitlab.
remote: The project you were looking for could not be found or you don't have permission to view it.
fatal: repository 'https://gitlab.com/[group_name]/[repo_name].git/' not…

Bilal El Mahdaoui
- 184
- 1
- 1
- 10
4
votes
2 answers
Secret variables with a dollar sign are not correctly set
when trying to use a secret variable with a value containing dollar sign on gitlab-ci secret variables it's not got variable value correctly.

javidasd
- 1,126
- 13
- 18
4
votes
1 answer
How to deploy an AWS Kinesis Data Analytics App without downtime
We currently have an AWS Kinesis Data Analytics app that requires a .jar file to run.
We have automated the deployment for our .jar file that resides in an S3 bucket.
Our issue is, whenever the .jar file is updated we are forced to restart the…

Marc Asmar
- 1,527
- 1
- 10
- 22
4
votes
1 answer
Does implementing CI/CD require prerequisite steps?
I'm trying to understand CI/CD strategy.
Many CI/CD articles mention that it's a automation services of build, test, deploy phase.
I would to know does CI/CD concept have any prerequisites step(s)?
For example, if I make a simple tool that…

shunman
- 227
- 1
- 2
- 9
4
votes
1 answer
Gitlab CI - not supported: outside build directory
I have a problem with saving the artifact. The project is divided into 3 modules, one of them is saved and the other two are not.
Clonning project:
Cloning into '/home/gitlab-runner/builds/Gso-uWvA/0/www/project-infoserwis/../project-root
Cloning…

Radek
- 61
- 1
- 5
4
votes
0 answers
Unit test count is not shown on the sonarqube dashboard
I am using nodejs Project repository and the test cases are written in the Jasmine framework. On sonarqube dashboard, I cant see the unit test count block.
Sonar-template-configurations was written as…

Shahaji
- 175
- 1
- 4
- 14
4
votes
1 answer
How to refer environment variable inside GitHub workflow?
I'm trying to read the the GitHub environment variable inside the request json payload while making the curl request but somewhat these variables are not resolving and it gives an error the values I'm trying to read are KEY_VAULT and…

Tim
- 93
- 2
- 6
4
votes
2 answers
Preparation failed: Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock
Trying to transform a project in gitlab to docker image. The gitlab is selfhosted. This is the error I get:
Running with gitlab-runner 13.12.0 (7a6612da)
on test -KnwQXuT
Preparing the "docker" executor
ERROR: Failed to remove network for…

SerCio
- 105
- 3
- 8
4
votes
0 answers
Azure Pipeline job script /usr/bin/xvfb-run: cannot create /dev/stdout: No such device or address
I created an Azure Agent in my kubernetes cluster using https://learn.microsoft.com/en-us/azure/devops/pipelines/agents/docker?view=azure-devops. I can run hello-world style pipelines on it, the agent is up and running. I have unity-editor installed…

MrAkroMenToS
- 503
- 1
- 5
- 9
3
votes
1 answer
send the HTML report generated in gitlab
I've the html report generated under the artifacts folder for a given job, now I want to make that HTML report to be available in one of the nginx hosted web server (http://some_domain_name:8080).
my .yml file looks like below:
job:
artifacts:
…

User123
- 1,498
- 2
- 12
- 26
3
votes
0 answers
What's the equivalent of GitLab's "extends" keyword in GitHub Actions?
What's the equivalent GitLab's extends keyword in GitHub Actions?
I want to migrate from GitLab to GitHub Actions, but I can't find constructs similar to GitLab's extends keyword and child pipelines to reuse functionality and refactor…

Shuzheng
- 11,288
- 20
- 88
- 186
3
votes
1 answer
github actions path filtering returning true when no changes made
So I'm using this marketplace action dorny/paths-filter to check if there are files changed to run a specific workflow. for the moment I'm just testing the outputs to see if they are correct so I have this file structure.
- .github/workflows/
-…

david backx
- 163
- 1
- 9