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
2
votes
1 answer
Code Coverage Issue in GitLab - showing unknown
I added the coverage keyword and regular expression on stage, still not working.
run tests:
stage: test
coverage: '/coverage: ^TOTAL.+?(\d+\%)$/'

Shashikumar KL
- 1,007
- 1
- 10
- 25
2
votes
0 answers
Is there a way to require Xcode Cloud workflow to pass for GitHub Pull Request to merge?
We are testing feasibility of migrating from GitHub Actions to Xcode Cloud for our CI/CD needs, and with GitHub Actions we could require that at least, say, the build & test workflow needed to succeed in order for a Pull Request to be merged, but I…

BJ Miller
- 1,536
- 12
- 16
2
votes
1 answer
Error while passing output parameters between jobs
I need to pass the output parameter environment to the second job but for some reason it is always empty i.e.
environment: ${{ needs.set-environment-variable.outputs.Environment }}
Here's my workflow:
jobs:
set-environment-variable:
runs-on:…

Santiago Galicia
- 35
- 3
2
votes
1 answer
How do I create a PR using GitHub Actions working?
I keep getting this error:
pull request create failed: GraphQL: Resource not accessible by integration (createPullRequest)
Even though I have granted GITHUB_TOKEN every permission.
Here's my workflow:
name: Pull Request Action
on:
push:
…

me505
- 21
- 1
2
votes
1 answer
Jenkins is not getting up, remains in failed state
I almost done all the available things on the internet even the solution provided at Jenkins community that is yum upgrade as I am using centos 7.6 but nothing worked for me the error is still same. The jenkins version I ma using is 2.346.2.
in…

Shobhit Solanki
- 49
- 4
2
votes
0 answers
Invalid tag: missing manifest digest when exporting nx docker image to GitLab docker container using Azure DevOps CI
I am trying to export an nx docker image to the GitLab docker container using Azure DevOps CI.
The image is pushed successfully, but it is not tagged properly. I am getting the error "Invalid tag: missing manifest digest".
I have checked the version…

user3012488
- 99
- 9
2
votes
1 answer
Jenkins Pipeline couldn't init the repo (Windows controller, Mac agent)
I have a Jenkins controller machine that runs Windows and an agent machine that runs on MacOS. Both machines have git installed.
If I type where git in my Mac's terminal, I get this output: /usr/bin/git.
My goal is: I'm trying to check out the…

Andrei Suslov
- 83
- 8
2
votes
1 answer
Bitrise build fails for Android 13 (API level 33)
Bitrise fails to build an Android app which targets Android 13 (API level 33).
I've checked on Bitrise stacks and android-33 is only present in linux-docker-android-20.04 stack. This is unsuitable for me as I develop cross-platform app and use the…

Paul Allen
- 23
- 4
2
votes
0 answers
Is there any way to trigger a workflow on GitHub actions that will execute after N hours from another workflow that succeeded?
For example, I have 2 pipelines: A and B.
I want to trigger B pipeline N hours after A is executed.

Mocanu Gabriel
- 490
- 5
- 19
2
votes
1 answer
Nuxt doesn't execute `fetch()` when reloading page when deployed
In my nuxt app I fetch data via the fetch() method. This works totally fine but as soon as I reload the page the data is gone and the fetch() method doesn't get executed. (Network tab doesn't show any request)
I'm using axios and vuex.
vuex store
//…

Erich Vogel V2
- 21
- 5
2
votes
1 answer
Fastlane, auto fill package name on upload_to_play_store
Hi I'm new to fastlane and I have a react native iOS & android application which I have setup with fastlane. I have multiple productFlavors for its different app versions:
productFlavors {
flavor1 {
applicationId "com.package.flavor1"
…

MetaSnarf
- 5,857
- 3
- 25
- 41
2
votes
1 answer
How can I run MSVC build tools (e.g. lib.exe) on an Azure Agent?
I need to combine several static libraries (built from C++ code) for windows on an Azure (Microsoft-hosted) build agent. Locally, I can do this with lib.exe (part of the MSVC build tools).
I'm trying to run lib.exe in a script task, but the…

Sidelobe
- 433
- 7
- 13
2
votes
1 answer
How to run project with Gitlab CI registry variables?
Can you explain. I have Gitlab runner and now I am configuring CI/CD using one guide. It says that runner requires the image names in docker-compose.yml to be named like…

fgrd4035
- 51
- 4
2
votes
1 answer
Argocd helm app with multiple value files
We are trying to start using Argocd to manage our k8s cluster. For the migration we have a single helm chart that we use for multiple microservices. To do a POC of the migration we have created a new repo that contains the chart and all the value…

KarlsMaranjs
- 311
- 1
- 9
2
votes
1 answer
Unit Tests in GHA failing with java.lang.IllegalArgumentException: Unsupported class file major version 55
I've inherited a codebase that hasn't been touched for around 3 years. I've noticed that a large number of unit tests in our GitHub action for the repo are failing with the error:
java.lang.IllegalArgumentException: Unsupported class file major…

Cam
- 2,026
- 3
- 25
- 42