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

How to start Hudson with the existing configuration?

I had Hudson running via: cd /usr/lib/hudson java -jar hudson.war Unfortunately, I restarted that server and on accessing the Hudson Url, I found that all the configuration is missing. However, I can see that all the configuration files were saved…
Cuga
  • 101
  • 3
  • 4
  • 11
0
votes
1 answer

Things to consider when building a continuous integration server?

I'm new to continuous integration, but immediately realize its value, and I want to get one set up right away. I have played with TeamCity and have it working in a VM great. Now, I don't want to spend money on another system, so I was planning on…
Dave
  • 103
  • 4
0
votes
1 answer

Cannot execute nested command on remote host over ssh tunnel

Im running the following command in my GitLab CI job: ssh ${REMOTE_HOST} "docker restart $(docker ps --format '{{.Names}}' | grep '^backend')" The problem is that it returns me the following error: /usr/bin/bash: line 156: docker: command not…
0
votes
0 answers

Continous delivery using Gitlab, Foreman and Puppet

We are using different tools to orchestrate our environment. On one side, we have Puppet and Foreman to deploy our different server applications, on the other side, we are using Gitlab in order to manager issues, integrated with the Git merge…
0
votes
0 answers

Gitlab runner fails when running too many job same time

I've set some scheduled jobs on gitlab. It is running some parallel jobs every minute and reaches about 500 simultaneous process . After some point runner throws below error and fails. Running with gitlab-runner 15.5.0 (0d4137b8) on XXXX…
ibrahim
  • 431
  • 1
  • 7
  • 20
0
votes
1 answer

Keep GitLab environment running in Docker container

I'm aiming to deploy an environment for testing. It's a PHP application, and I could simply serve the PHP files using the embedded server. My .gitlab-ci.yml is plain simple: docker_test: stage: deploy image: php:7.2 rules: - if:…
0
votes
1 answer

Deploying monorepo without SSH

Full Disclosure: I'm a DevOps noob. I am running a MERN mono repo on an EC2 instance. Originally, I would always SSH into my machine, pull from the repository, and build again. But there are problems with this.. the build process takes longer and so…
0
votes
0 answers

Mount volume to build image used by gitlab runner

I have custom image where I want to run some tests which require installed app which in turn need openGL context. I can run it in container composed this way and manually build project and run tests. docker-compose.yml: version: "3.6" image:…
Max K
  • 3
  • 1
  • 3
0
votes
0 answers

Build pipeline to upload .jar package to AWS Lambda

So far according to the documentation at https://docs.aws.amazon.com/lambda/latest/dg/java-package.html, the only way to upload .jar code to an AWS Lambda function would be to manually upload the file over their web interface. Is there a way to…
0
votes
1 answer

Jenkins Linux Master + Windows Build agent?

Will a Jenkins Linux master work with a Windows build agent? Does anyone know if this set up can be achieved and is supported? Just looking for a proof of concept and that this can work so I can proceed with getting this set up. Thanks.
synth45
  • 11
  • 1
  • 2
0
votes
2 answers

How does Google Cloud Platform handle database backups with --async flag?

I'm currently working on adding an extra step to our companies CI/CD pipeline so we make backups of the database before making a deployment that could potentially run migrations on our database. To make the backup I authenticate with Google Cloud…
0
votes
0 answers

Azure: When Deploy FunctionApp to slot -> Error: Package deployment using ZIP Deploy failed. Refer logs for more details

I'm using Azure DevOps and their CI/CD pipelines. When I deploy my Windows FunctionApp to a slot I get this error: 2021-05-04T13:10:14.0501876Z ##[error]Failed to deploy web package to App Service. 2021-05-04T13:10:14.0521125Z ##[error]Error:…
0
votes
2 answers

Build Pipeline ARM Templates - TFS 2018

My client is using TFS 2018 as their CI/CD tool. I know you can use TFS to deploy ARM templates to Azure but I've never done it before. I usually just use the portal or powershell. I know I need to create a pipeline to perform the deployment but…
-1
votes
2 answers

Setting up Hudson on ec2 and configuring with web gui

I would like to setup hudson on a ec2 micro linux instance. My question is exactly how to configure hudson after i install it remotely via ssh on the ec2 instance. I would like to configure using the hudson web gui. When I have done this locally,…
-2
votes
1 answer

We need limitted functionality like automated installation. Which virtualization is better for us?

We are about to buy a server and we want to make it as our Virtualization environment. This server will be in isolated environment and will not have direct access to production environment. We wanted to do autodeployment once the nightly build is…
1 2 3
9
10