Questions tagged [continuous-integration]

Continuous integration (CI) is the software engineering practice of integrating code continuously and frequently rather than wait for changes to accumulate causing code conflicts to accumulate. Usually these changes are verified automatically using build and test processes.

136 questions
2
votes
1 answer

How to transparently cache git clone?

I would like to offer a continuous integration service (I'm planning to use hudson, but the solution should work for others as well) with a web interface where a user will define a SCM URL (e.g. a git URL) and the workspace/source root which is used…
Kalle Richter
  • 268
  • 6
  • 18
2
votes
0 answers

Migrate latest stable HUDSON to latest stable LTS JENKINS

I am having issues migrating a HUDSON server with several jobs to JENKINS Jenkins claim you can upgrade easily from hudson but also mention it is only for version 1.395 or less…
2
votes
2 answers

Chef cookbook continuous deployment

I'm trying to integrate my chef workflow to my usual continuous integration/deployment workflows. I managed already to have a jenkins task which checks out the git repo and runs foodcritic but i can't figure out the last step: to push to cookbook to…
Philipp
  • 116
  • 4
2
votes
0 answers

Access Denied error when running xcopy in jenkins on windows 2008 r2

I have installed Jenkins on a Windows Server 2008 R2 and in the build script i use xcopy to copy the generated war file to a specific folder The problem I am having is that every so often the build fails when run xcopy showing access denied and…
2
votes
1 answer

Code-First Database Creation During TFS 2010 CI Build

I would like to automate code-first database generation during the automated CI build of a web project in Team Foundation Server 2010. When run locally the tests create a code-first database specified by the connection string in the app.config of…
2
votes
1 answer

Any web interface to show deployments history with mcollective?

I'm using mcollective & puppet for deployments. I would like to know if there is any user interface which allows me to choose a specific package/version and deploy and any user interface i can already use which allows me to show the deployments…
Jas
  • 701
  • 4
  • 13
  • 23
2
votes
2 answers

What is a free active directory simulator tool for testing remote single-sign-on auth requests?

Need to test if an application has correctly implemented active directory remote authentication single-sign-on requests? If you don't know of a tool, what would be a checklist of items to confirm are in place?
2
votes
1 answer

How to configure CruiseControl.Net for Windows Authentication?

I am using CruiseControl.Net for continuous integration which is now accessing the dashboard through login plugin, which in turn is authenticating and authorizing after verifying it with a set of users saved as XML file in the CruiseControl.Net…
2
votes
1 answer

Commit hook on github to trigger hudson build

I'm using Hudson as my CI server and I'm trying to get my commits to trigger a build. When I was using gitosis I just had a post-receive that ran a curl -u gituser:password http://my.hudson.url/project/?token=someToken I can't seem to find out…
brad
  • 502
  • 1
  • 10
  • 22
2
votes
2 answers

How to implement Continuous Integration with Puppet and multiple services

We're trying to implement a Continuous Integration pipeline in our environment. We have a lot of different services, each with its own Git repository. Deployment is done via Puppet, using an external node classifier that determines what classes to…
Shaul Behr
  • 243
  • 1
  • 5
  • 13
2
votes
0 answers

System call failure when executing CI script in Docker

I'm currently setting up GitLab CI/CD. The Runner is installed on a Windows Server 2019 VM which has Docker Engine running. My gitlab-ci.yml looks something like this: variables: GIT_STRATEGY: clone GIT_DEPTH: 0 stages: - export export: …
2
votes
2 answers

port mapping didn't happen for a container deployed on AWS ECS(uses EC2)

Context: I am using Circle CI's aws-ecs/deploy-service-update orb to deploy my docker container by pulling the latest image in AWS ECR and deploy it in AWS ECS with AWS EC2 instance. This container is a Machine Learning model that accepts API…
1
vote
1 answer

Gitlab CI/CD with conditional scripts

Here is what I wish to do in GitLab CI/CD: Whenever something is pushed into a specific branch I wish to have multiple scrips and CI/CD should decide which script should be run based on the pushed files list. For example: IF anything changed in…
Bert
  • 1,028
  • 1
  • 16
  • 33
1
vote
1 answer

How to make custom docker image for Gitlab CI

I have CI on Gitlab for creating of my android application. This is example of my .gitlab-ci.yml: image: openjdk:8-jdk variables: ANDROID_COMPILE_SDK: "28" ANDROID_BUILD_TOOLS: "28.0.2" ANDROID_SDK_TOOLS: "4333796" before_script: -…
Piduna
  • 541
  • 4
  • 12
  • 25
1
vote
1 answer

Jenkins Pipeline: Using Env Var in another Env Var declaration

I would like to make my long "ssh" command reusable as a simple variable throughout my pipeline. To do this, it would be nice to declare my hostname in a var, then use that var in another var declaration to build the final command: environment { …
emmdee
  • 2,187
  • 12
  • 36
  • 60