Questions tagged [cicd]

Use for questions related to practices of CICD (Continuous Integration and Continuous Delivery or Continuous Deployment) and its related tools.

2046 questions
0
votes
0 answers

CICD nightmare: what is a gitlab runner ACTUALLY doing?

I am having a lot of trouble conceptualizing what CICD even is... and how it does what it does. I use it every day and really grasp very little of how it works and it's frustrating to me. I have been working in the devops space for a long time but…
0
votes
0 answers

Gitlab CI retry failed job automatically

I need to configure a gitlab ci job to be re-executed when it fails. More specifically the deploy job. I set up the job with a retry value and tried to force it to fail to test it. But I couldn't achieve the job start again. Here an example of what…
0
votes
1 answer

Eclipse EMF. Generate a .JPG file from aird at each commit

I would like to know if there is a small tutorial or quick instructions to make gitlab generate a capture of the aird/ecore file in the form of jpg file each time I push my model. I know I would set a CICD pipeline in gitlab but dont know where to…
Abdelghani
  • 455
  • 2
  • 9
  • 19
0
votes
0 answers

TeamCity and Deploying .net app on IIS server

I am completely new to CI/CD and need some assistance. Where I work we used to have a setup with Azure pipelining that created the builds and send to Octopus Deploy to deploy to the Developer Server then Staging and Live (that would be manual from…
0
votes
1 answer

Trigger Gitlab Pipeline when any file in directory change or any sub directory inside sub directory give directory changes

I am having directory structure as below. Gitlab pipeline to trigger pipeline when any changes done in abc dir or any sub-directory or any of its sub sub directoty inside it. So If any changes happened in directory or sub directory or sub of sub…
Divyank
  • 811
  • 2
  • 10
  • 26
0
votes
0 answers

I want to use xcode cloud to make ci cd in flutter project & get error: xcode cloud The sandbox is not in sync with the Podfile.lock?

xcode cloud fails & gives this error: **xcode** cloud The sandbox is not in sync with the *podfile.lock*. this is my script: #!/bin/sh # The default execution directory of this script is the ci_scripts directory. cd $CI_WORKSPACE # change working…
Abdelrahman Tareq
  • 1,874
  • 3
  • 17
  • 32
0
votes
0 answers

changing the python version Teamcity cloud Agent using custom script

The cloud windows teamcity agents runs the following custom code SET PATH=C:"Program Files"\Git\bin;C:\Program Files (x86)\Python310-32;C:\Program Files (x86)\Python310-32\Scripts;C:\Program Files\nodejs;%env.PATH% pip uninstall -y PyInstaller pip…
Khalil M
  • 1
  • 1
0
votes
1 answer

How to use react-native-config with react native app build with CircleCI

How could my react native app access the CircleCI env vars because they are very sensitive and I cannot hard code them.
Hamza Hmem
  • 502
  • 5
  • 11
0
votes
0 answers

Does containerizing my application using docker is called deployment?

i'm working on a react/spring application and i am supposed to create an continuous integration pipeline to automate the whole process . I'm almost done but i'm still confused about docker role in the whole process . I thought when using it makes me…
0
votes
1 answer

gitlab CI YAML: combination of variables

I manually run my pytest as following: $ pytest test_a.py --opt0="123 456" --opt1="789 abc" In YAML file .gitlab-ci, I woud like to define something similar: test_a: scripts: - pytest test_a.py ${OPTIONS} variables: OPTIONS:…
0
votes
0 answers

How can we set up autodeployyment(CI/CD) with AWS loadbalancer servers

strong textI am trying to update the latest code with load balancer servers
Manoj
  • 499
  • 4
  • 4
0
votes
1 answer

Dockle tells about error CIS-DI-0010 in my Dockerfile (nginx image)

When I check my docker image with Dockle, I get a FATAL error: FATAL - CIS-DI-0010: Do not store credential in environment variables/files * Suspicious ENV key found : NGINX_GPGKEY on /bin/sh -c set -x && addgroup --system --gid 101 nginx …
CCannel
  • 1
  • 1
0
votes
0 answers

Github Actions - Different workflow file per branch

I have a project in Github, which has 2 branches - dev & master. Each branch has a different workflow yml file. On pull request from dev to master it also includes the dev's yml file in the changes. How can i make the .github/workflows ignored on…
0
votes
0 answers

How do I get from lambda function to the GitLab for the first time?

I have a serverless application with more than 100 lambda functions. No version control or CI/CD has been implemented for them. I would like to start using GitLab for setting up a CI/CD environment. I have two questions w.r.t this. Is there a way…
prema
  • 1
0
votes
0 answers

How to perform deployment of Ruby On Rails Application on AWS EC2 Servers from BitBucket without storing artifacts on S3

Currently my Jenkins server publishes the code to S3 as a new version(The bucket has versioning enabled) which is picked up by the AWS CodeDeploy and it pushes the code onto target EC2 Cluster But, I am looking for a way to deploy the Ruby On Rails…
1 2 3
99
100