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
30
votes
5 answers
Module '"buffer"' has no exported member 'Blob'
Have anyone been in this situation before ?
I run my code with CI/CD
after nest build, it gives me error :
node_modules/@types/superagent/index.d.ts:23:10 - error TS2305: Module '"buffer"' has no exported member 'Blob'. 23 import { Blob } from…

ninoorta
- 662
- 1
- 5
- 13
23
votes
3 answers
Workflow is not shown so I cannot run it manually (Github Actions)
I created the workflow Test but there is no Run workflow button to run it manually.
This is my test.yml file. Is there anything missing?
name: Test
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
…

Super Kai - Kazuya Ito
- 22,221
- 10
- 124
- 129
22
votes
1 answer
Flake8 Error code '#' supplied to 'ignore' option does not match '^[A-Z]{1,3}[0-9]{0,3}$'
I met this issue while running git push.
$ flake8 --config setup.cfg Traceback (most recent call last): File "/usr/local/bin/flake8", line 8, in
sys.exit(main()) File "/usr/local/lib/python3.8/site-packages/flake8/main/cli.py", line…

taichi_tiger
- 809
- 1
- 7
- 18
18
votes
1 answer
If or condition in Github Actions
I've been trying to build a CICD pipeline in Github actions and we're not able to process if and or conditions in the same. below is the example of our code snippet,
name: Build Non prod
needs: [rules]
if: ${{…

Sam-Sundar
- 511
- 1
- 4
- 12
17
votes
3 answers
Gitlab CI CD variable are not getting injected while running gitlab pipeline
I am running the below code section in gitlab-ci.yml file:
script:
- pip install --upgrade pip
- cd ./TestAutomation
- pip install -r ./requirements.txt
Below are the keys and values. So I have to pass any values to the pipeline with key as a…

simond
- 684
- 1
- 10
- 36
12
votes
2 answers
Jest issue. FakeTimers: clearTimeout was invoked to clear a native timer instead of one created by this library
After the update of Node.js from version 14 to version 16, we've got a lot of failed tests on bitbucket CI/CD pipelines. Locally tests pass.
Seems like the problem in timers, cause the first error message says: "FakeTimers: clearTimeout was invoked…

Alex Nepsha
- 499
- 5
- 9
11
votes
6 answers
GitHub Actions: How to view inputs for workflow_dispatch?
My idea here is to write my inputs from workflow_dispatch on each pipeline run. .
For example, in Bitbucket pipelines input parameters shown after custom -
Is there a way to do something similar for GitHub?

voralexan
- 131
- 1
- 1
- 7
10
votes
6 answers
firebase deploy error, Error: Failed to list functions for (project name)
I am hosting my web application in Firebase and I have been deploying it with Gitlab CI/CD and it has been working just fine! But today for some reason I am getting this error when the pipeline is working
56Error: Failed to list functions for…

Ahmed
- 595
- 4
- 25
9
votes
2 answers
Gitlab Runner Docker login not working error during connect: Post http://docker:2375/v1.40/auth: dial tcp: lookup docker on 67.207.67.3:53
I am using docker executor on gitlab runner as an image I am using docker:stable
I am getting this error:
$ docker login gitlab.mydomain.com:5050 -u myusername-p mytoken
WARNING! Using --password via the CLI is insecure. Use --password-stdin.
error…

Muhammadsiddiq
- 275
- 1
- 2
- 12
9
votes
2 answers
reusable workflows should be referenced at the top-level `jobs.*.uses' key, not within steps
reusable workflows should be referenced at the top-level `jobs.*.uses' key, not within steps
name: HelloWorld
on:
workflow_dispatch:
jobs:
checkout:
runs-on: windows-latest
steps:
- name: Checkout using the Template File
uses:…

wehelpdox
- 339
- 6
- 16
9
votes
1 answer
DevOps CICD - Parallel stages Deployment
I have a new release pipeline contains 75 stages, when I create release each one of the stages take in average 5 minutes to complete deployment process then move to next one, that mean I need almost 7 hours to deploy all stages.
How can I make all…

alhassan ali
- 131
- 2
- 7
8
votes
1 answer
How return artifact from Child Job to Parent pipeline?
Use trigger for dynamic select test job
prepare_test:
image: $CI_REGISTRY/platform/docker-images/vault:1.8
variables:
CONTEXT_TEST: |
include:
# PRODUCT
- project: 'gitlabci/integration-test'
ref: dev_v2
…

Nikolay Baranenko
- 1,582
- 6
- 35
- 60
8
votes
1 answer
Build works on local but fails on codemagic | Execution failed for task ':app:stripDebugDebugSymbols'
I'm trying to implement a continuous deployment system to build my app and deploy to Google Play using codemagic. Doing a build works fine locally but fails remotely on codemagic.
Error summary:
FAILURE: Build failed with an exception.
* What went…

eduinvestor
- 125
- 8
8
votes
1 answer
Failed to check the resource group status: 403 while deploying ARM template using CD pipeline through service principal/connection
While deploying Azure Data Factory's ARM template through service principal, I am getting below error:
[error]Failed to check the resource group status. Error: {"statusCode":403}.
Is it a service connection Access related issue? How to check/resolve…

Aniket Karajgikar
- 245
- 2
- 13
8
votes
1 answer
GitHub Actions Upload Artifact not finding provided path from npm run build
I'm trying to set up a react website using CICD principles. I can run it locally, use 'npm run build' to get a build folder, and the website works fine when I manually push the files to S3. However, when I try to run the build and deployment through…

Michael Albert
- 413
- 3
- 11