What is continuous delivery in jenkins?

devquora
devquora

Posted On: Mar 22, 2020

 

Continuous Delivery is a process, where code changes are automatically built, tested, and prepared for a release to production. In continuous delivery, initially, automated build scripts will detect changes in Source Code Management (SCM) like Git and then, once the change is detected, source code would be deployed to a dedicated build server to make sure build is not failing and all test classes and integration tests are running fine. Then, the build application is deployed on the test servers (pre-production servers) for User Acceptance Test (UAT). Finally, the application is manually deployed on the production servers for release.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Jenkins Interview Questions

    What is Jenkins?

    Jenkins is an open-source automation tool with a powerful plugin architecture that helps development teams automate their software lifecycle. Jenkins is used to implementing many industry-leading comp...

    Jenkins Interview Questions

    What is a Jenkins slave?

    A Slave, in Jenkins, is a Java executable that operates on a remote computer. The main characteristics of Jenkins slaves are that it understands requests from the Jenkins master instance, slaves can w...

    Jenkins Interview Questions

    What is hudson build tool?

    Hudson is a widely accepted open-source continuous integration server rendering development teams with a secure way to control changes in source control and excels at uniting with virtually every tool...