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
1 answer

Liquibase update when pod goes down

I am deploying liquibase scripts using CI CD pipeline. There are some instances where a liquibase changeset transaction might take very long and the pod may go down during that time. For example, a changeset adds a new non-null column into an…
San N
  • 13
  • 1
  • 5
0
votes
0 answers

Jenkins - Error when executing always post condition: java.lang.NoSuchMethodError: No such DSL method 'lastSuccessful' found among steps

While running a regression FT suite, which worked perfectly earlier through 'Pipeline Script from SCM', I am facing the CI job failure recently as "No such DSL method 'lastSuccessful' found among steps".
0
votes
0 answers

SSH host and port using github actions

I would like to deploy my application with a CI CD pipeline. I used appleboy/ssh-action@master and github actions. I generated an ssh key pair in git bash and I added the the pub file to my profile and the private key to secrets in the repo. The…
0
votes
0 answers

Best practice for CI/CD when building a SwiftUI for for different Firebase projects

I am new to iOS development (historically a full-stack guy) and I'm hoping some of you out there can share with me the best practice for setting up an Xcode project that will support a "dev", and a "prod" Firebase configuration. I use Firebase as my…
ra9r
  • 4,528
  • 4
  • 42
  • 52
0
votes
1 answer

Docker and git error while deploying to server

I was using a CI CD pipeline to deploy my project to the server. However it suddenly stopped working and I got two errors. The first one is related to git and The second one is a docker error. Can somebody help me what could be the problem? 32…
0
votes
0 answers

How to escape slashes from folder paths in GitLab CI/CD?

I have this line in CI/CD GitLab pipeline: sed -i "s|/xxx/yyy/zzz.txt|${WHITELIST_PATH}/g" .env also tried: sed -i "s#/xxx/yyy/zzz.txt#${WHITELIST_PATH}/g" .env sed -i "s|/xxx/yyy/zzz.txt|${WHITELIST_PATH}/g" .env and all combinations... But the…
xphorm
  • 25
  • 4
0
votes
0 answers

Publish Github repository to GoDaddy page

I am new to CI/CD and Github. I have a website that I am hosting on GoDaddy. I have the website code in a Github repository. Is there a way to trigger a website publish when an update is done to master?
0
votes
1 answer

How to prevent some files to be modified in github?

Let's say I have a GitHub repository that has a config file for a CI/CD tool, e.g. Jenkins. In my CI/CD pipeline, I have a unit test step, in which all unit tests inside tests directory of the repository are run. Now in this case, someone malicious,…
ssaf
  • 86
  • 1
  • 6
0
votes
0 answers

Bitbucket Pipeline custom variable is not showing its value in step script

I have created a pipeline for running automation script from bitbucket, when I trigger build with docker container all custom variable is working (it pass the correct values) but when I run the same project in self.hosted machine and pass the…
Deepak
  • 1
0
votes
0 answers

'No matching tab was found with the following properties: Title=Demo Web Shop*' when running testcase in Jenkins for a tosca testcase

I have integrated Tosca with jenkins to run in local .The test runs successfully on jenkins .However I see below error in result.xml file .The tests run fine in Tosca its only in Jenkins that I see this error .What do I do? This is the result.xml…
ShilpaSP
  • 1
  • 2
0
votes
0 answers

AMI Scanning in Jenkins Pipeline

Is it possible to scan AMI images for vulnerabilities in packages/software at build time. If so then what open source tools can be used. I don't want to use Inspector/Tenable etc. as they do more than I am looking for.
0
votes
1 answer

Pushing changes using Git CI/CD

Problem statment- I m trying to push changes from CI pipeline. Current Implementation git config --global user.email "mail_id@gmails.com" git config --global user.name "bot" git checkout -b try git remote add -f b…
Isha Nema
  • 289
  • 5
  • 16
0
votes
0 answers

run EF Migration in Azure DevOps pipleline

I am new to the Azure Devops. Your help is very appreciated!! thanks! I am trying to add EF migration into my project build/release pipeline. I got error on task : build EF Migration by using Command line: migrations script -i -p TestDBDDeploy -o…
Billede
  • 1
  • 1
0
votes
1 answer

Gitlab CI empty script

I'm trying to setup a simple CI/CD environment on gitlab. My code is a python app that needs an external service for testing. The service is a container that does not require any script to be run. My gitlab-ci.yml file is: stages: - dynamodb -…
esantix
  • 323
  • 5
  • 26
0
votes
1 answer

Error on codemagic publishing IPA to testflight

i having the follow error: Command: app-store-connect publish --path /Users/builder/clone/build/ios/ipa/zimexahse.ipa --key-id '$APP_STORE_CONNECT_KEY_IDENTIFIER' --issuer-id '$APP_STORE_CONNECT_ISSUER_ID' --private-key…
Ivan Guerrero
  • 23
  • 1
  • 3
1 2 3
99
100