SlideShare una empresa de Scribd logo
1 de 8
Descargar para leer sin conexión
CI Server Configuration : Jenkins 
    
Continuous integration 
 
Continuous integration (CI) is the practice, in software engineering, of merging all 
developer working copies with a shared mainline several times a day. It was first named and 
proposed by Grady Booch in his method, who did not advocate integrating several times a day.. 
The main aim of CI is to prevent integration problems, referred to as "integration hell". 
 
CI was originally intended to be used in combination with automated unit tests written 
through the practices of test­driven development. Initially this was conceived of as running all 
unit tests in the developer's local environment and verifying they all passed before committing to 
the mainline. This helps avoid one developer's work in progress breaking another developer's 
copy. Later elaborations of the concept introduced build servers, which automatically run the 
unit tests periodically or even after every commit and report the results to the developers. 
 
 
Best practices 
 
1 Maintain a code repository 
2 Automate the build 
3 Make the build self­testing 
4 Everyone commits to the baseline every day 
5 Every commit (to baseline) should be built 
6 Keep the build fast 
7 Test in a clone of the production environment 
8 Make it easy to get the latest deliverables 
9 Everyone can see the results of the latest build 
10 Automate deployment 
 
 
Costs and benefits 
 
Continuous integration is intended to produce benefits such as: 
 
Integration bugs are detected early and are easy to track down due to small change 
sets. This saves both time and money over the lifespan of a project. 
 
Avoids last­minute chaos at release dates, when everyone tries to check in their slightly 
incompatible versions 
 
When unit tests fail or a bug emerges, if developer need to revert the codebase to a 
bug­free state without debugging, only a small number of changes are lost (because integration 
happens frequently) 
Constant availability of a "current" build for testing, demo, or release purposes 
Frequent code check­in pushes developers to create modular, less complex 
code[citation needed] 
 
With continuous automated testing benefits can include: 
 
Enforces discipline of frequent automated testing 
Immediate feedback on system­wide impact of local changes 
Metrics generated from automated testing and CI (such as metrics for code coverage, 
code complexity, and features complete) focus developers on developing functional, quality 
code, and help develop momentum in a team 
 
 
  Installing Jenkins on ubuntu 
 
Installation: 
For installation follow below steps: 
1.  ​wget ­q ­O ­ https://jenkins­ci.org/debian/jenkins­ci.org.key | sudo apt­key add ­ 
2.  ​sudo sh ­c 'echo deb http://pkg.jenkins­ci.org/debian binary/ > /etc/apt/sources.list.d/jenkins.list' 
3.  ​sudo apt­get update 
4.  sudo apt­get install jenkins 
 
Upgrade: 
Once installed like this, you can update to the later version of Jenkins (when it comes out) by 
running the following commands: 
1. sudo apt­get update 
2. sudo apt­get install jenkins 
 
 
 
 
 
 
 
 
 
 
Configure Jenkins: 
Next, you need to use the Jenkins web interface to install plugins, configure security and add 
users. 
 
Open your web browser to ​http://localhost:8080​. (If you’re running Jenkins remotely, you 
should be able to use the server’s domain or IP address.) 
 
currently for ip: ​x.x.x.x  
credential 
username: yourUserName 
pass: yourPassword 
 
Install Plugins:  
From the root page, click ​“Manage Jenkins”​ then ​“Manage Plugins”​. From the ​“Available” 
tab, check the following plugins: 
 
1. Git 
2. GitHub 
3. rbenv Or rvm 
4. Rake 
5. Rcov 
6. RubyMetrics plugin 
7. Mailer 
 
Next, select ​“Download now and install after restart” 
 
Configuration of Global Security part is skipped. You can see details here ​Security 
 
Manage Jenkins: 
 
Step 1: ​ Go to yourip:jenkinport/configure (​http://x.x.x.x:8080/configure​) . You can do it by jenkin 
home ­> manage jenkins ­> configure system 
 
Step 2:   
Home   
check home directory is /var/lib/jenkins or not . otherwise you have to set all 
default home configuration to that particular home directory. 
 
Email notification  
 
1. go to yourjenkinserver/configure  
2. In Email notification block smtp server => smtp.gmail.com 
3. select Use SMTP Authentication 
4. give user name password, select use ssh, smtp port => 465 , chracter­set => 
UTF­8 
5. select ​Test configuration by sending test e­mail ​to check configuration is 
succesful or not . 
6. If fails follow it from above link. 
7. Finally under your project settings , In ​Post­build Actions ​in  ​Email notification 
set up your emails. 
Configure Global Security
1. Enable security. 
2. Security Realm ­> Jenkins’ own user database ­> Allow users to sign up 
3. Authorization ­> Anyone can do anything 
4. after you sign up  ­> change authorization to​ Logged­in users can do anything or 
Matrix­based security or Project­based Matrix Authorization Strategy  ​as your wish 
. in Matrix­based security​ you can set up configuration for a particular user/ group 
which is created in jenkins ui ​. 
 
N.B.​ while configuring global security  you may have security problem like locking yourself 
(Hope you have not  :) ). 
but If you , then​ ​Disable Security 
 
or for your convenience  
One may accidentally set up security realm / authorization in such a way that you may no longer 
able to reconfigure Jenkins. 
When this happens, you can fix this by the following steps: 
1. Stop Jenkins (the easiest way to do this is to kill the servlet container.) 
2. Go to $JENKINS_HOME in the file system and find config.xml file. 
3. Open this file in the editor. 
4. Look for the <useSecurity>true</useSecurity> element in this file. 
5. Replace true with false 
6. Remove the elements authorizationStrategy and securityRealm 
7. Start Jenkins 
When Jenkins comes back, it's in the unsecured mode where everyone gets full access to the 
system. 
If this is still not working, trying renaming or deleting config.xml. 
 
 
 
   
Configure your project: 
Next, you need to configure your Rails project. To complete this follow below steps: 
 
Step 1:​ From the Jenkins home page, click on ​“New Item”​, then select “Build a free­style 
software project” and click “OK”. 
 
Step 2: ​Fill in the “​Project Name”​ and “​GitHub project” ​fields.” Project Name” must be a single 
word. 
 
Step 3: ​Under “​Source Code Management”,​ select “​Git”​ and fill in the repo url. (If you need to 
authenticate with SSH, configure that here.) 
   ​Step 3.1: 
      ​You need to switch jenkins user to generate ssh key by following command: 
su ­s /bin/bash jenkins 
It is because jenkins web interface expect all command will be executed as 
a bash command. Hence whenever we executing by switching only by su jenkins 
then it’s environment will not same as the jenkins expect. So that the known host 
will not allow the user to clone the remote private repository. 
 
Step 4:​ Check the “​rbenv build wrapper”​ box. 
 
If you are using ​RVM​ instead of ​RBENV then, 
Check the  ​Run the build in a RVM­managed environment =>Implementation  
put ruby version for that project​. 
 
Step 5:​  Database credential need to configure to sync the code with jenkin. So that we need to 
create database.yml . To do so, follow the below command: 
 
touch ~/project­database.yml 
 
Then you need to write your db config in  ​~/project­database.yml ​according to your Database 
configuration. To accomplish that follow: 
 
         ​nano ~/project­database.yml 
 
and put your custom configuration in ​~/project­database.yml 
 
Step 6: 
Tick on  ​Build when a change is pushed to GitHub ​from​ Build Triggers 
 
Step 7:​ Under “​Add build step​”, select “​Execute shell”.  
 
Now we are ready and a typical Rails app script might look like this: 
cp ~/project­database.yml config/database.yml 
mkdir ­p coverage/rcov 
mkdir ­p rcov 
bundle install 
rake db:create RAILS_ENV=test 
rake db:migrate RAILS_ENV=test 
rake spec 
 
Make sure the database is configured properly. If you need a special database.yml, you can 
store this in Jenkins’ home directory. 
 
OPTIONAL: ​To make sure you know when a build fails, set up email notifications (under 
“Add post­build action”). Configure SMTP on the “Configure System” page, found under 
“Manage Jenkins”. See the Jenkins wiki for ​an easy Gmail setup:  
Or You can follow below step. 
8. got to yourjenkinserver/configure  
9. In Email notification block smtp server => smtp.gmail.com 
10. select Use SMTP Authentication 
11. give user name password, select use ssh, smtp port => 465 , chracter­set => 
UTF­8 
12. select ​Test configuration by sending test e­mail ​to check configuration is 
succesful or not . 
13. If fails follow it from above link. 
14. Finally under your project settings , In ​Post­build Actions ​in  ​Email notification 
set up your emails. 
 
Post­build Actions 
1. select publlish rcov report 
2. set directory => coverage/rcov 
3. Also before do this you need to ensure that you have right gem in your gem file: 
  gem 'simplecov', :require => false, :group => :test 
  gem 'simplecov­rcov' 
4. And also configure your spec/spec_helper.rb like this: 
               ​ require 'simplecov' 
                require 'simplecov­rcov' 
                SimpleCov.formatter = SimpleCov::Formatter::RcovFormatter 
                SimpleCov.start 'rails' 
 
 
Try out your build by clicking “​Build Now”​. 
 
 
GitHub Integration 
 
Finally, I'll set up the GitHub integration, so that a push triggers a new build in Jenkins. 
 
Navigate to “​Webhooks & Services​” under “​Settings”​ on the GitHub repository page. 
You’ll need to be a repo admin to do this. 
 
Click “​Configure services​” and select the “​Jenkins (GitHub plugin)” ​option. 
 
Enter the address to your Jenkins server followed by ​/github­webhook/​ (for example 
http://psdd.t.proxylocal.com​/github­webhook/​   or ​http://​x.x.x.x:8080/​github­webhook/​ ​), check 
“Active” and update your settings. 
 
That’s it. Try it out by pushing a commit to GitHub and verifying that a new build is triggered in 
Jenkins. 
 
 
    HardwareRequirementsForJenkins
 
As for your hardware questions we do not typically recommend best practices or hardware 
configurations because these vary based off specific customer needs and these are considered 
consulting questions. Jenkins Enterprise by definition runs exactly the same as OSS Jenkins. 
Here are some generic guidelines we sent out to a specific customer that has a sizable config: 
The machine requirements on Jenkins installations differ based on the artifacts generated. 
Thus, there is no one­size fits all recommendation that we provide. However, here are some 
guidelines: 
1. Everything runs off JENKINS_HOME, so make sure there is enough disk space 
available and the disk can grow. If you run out of disk space, you will see failures. Some 
plugins take more space than others (e.g a report generating plugin vs a build plugin). 
The disk usage plugin helps determine usage. 
2. Have a beefy machine for Jenkins master & do not run slaves on the master machine. 
Every slave has certain memory allocated in the master JVM, so the bigger the RAM for 
the master, the better it is. We typically hear customers allocate 16G or so. 
3. Slaves tend to be run of the mill x86 boxes, typically you want them to have the same 
OS as the release platforms. 
For reference,​ ​this​ presentation from Redhat shares their typical memory/machine 
requirements. 
As for the HA feature this is simply two (or more) masters sharing the same 
JENKINS_HOME—you can read more about the plugin​ ​here​. 
 
To Force restart jenkins 
1. sometimes jenkins goes out of memory exception.  ​sudo service jenkins restart 
donot work then . to we have to kill the java process manually . 
2. sudo netstat ­lpn | grep :8080 # jenkins run on 8080 port 
3. sudo kill ­9 pid 
4. sudo service jenkins start 
 
 
User id  / Password  for test purpose 
user : jenkins 
password : yourPassword 
 
 
               ============== ​THANK YOU ​=============== 
 

Más contenido relacionado

La actualidad más candente

Jfokus 2017 - The DevOps Disaster
Jfokus 2017 - The DevOps Disaster Jfokus 2017 - The DevOps Disaster
Jfokus 2017 - The DevOps Disaster Bert Jan Schrijver
 
Jenkins Introduction
Jenkins IntroductionJenkins Introduction
Jenkins IntroductionPavan Gupta
 
Continuous Integration, Build Pipelines and Continuous Deployment
Continuous Integration, Build Pipelines and Continuous DeploymentContinuous Integration, Build Pipelines and Continuous Deployment
Continuous Integration, Build Pipelines and Continuous DeploymentChristopher Read
 
Part 2 improving your software development v1.0
Part 2   improving your software development v1.0Part 2   improving your software development v1.0
Part 2 improving your software development v1.0Jasmine Conseil
 
Continuous integration and delivery
Continuous integration and deliveryContinuous integration and delivery
Continuous integration and deliveryDanilo Pianini
 
Flusso Continuous Integration & Continuous Delivery
Flusso Continuous Integration & Continuous DeliveryFlusso Continuous Integration & Continuous Delivery
Flusso Continuous Integration & Continuous DeliveryJoost van der Griendt
 
Continuous integration using jenkins
Continuous integration using jenkinsContinuous integration using jenkins
Continuous integration using jenkinsVinay H G
 
不只自動化而且更敏捷的Android開發工具 gradle
不只自動化而且更敏捷的Android開發工具 gradle不只自動化而且更敏捷的Android開發工具 gradle
不只自動化而且更敏捷的Android開發工具 gradlesam chiu
 
Dev-QA-Ops UNICOM WCNGT 2014 Bangalore
Dev-QA-Ops UNICOM WCNGT 2014 BangaloreDev-QA-Ops UNICOM WCNGT 2014 Bangalore
Dev-QA-Ops UNICOM WCNGT 2014 BangaloreManoj Jain
 
Standardizing Jenkins with CloudBees Jenkins Team
Standardizing Jenkins with CloudBees Jenkins TeamStandardizing Jenkins with CloudBees Jenkins Team
Standardizing Jenkins with CloudBees Jenkins TeamDeborah Schalm
 
Let’s start Continuous Integration with jenkins
Let’s start Continuous Integration with jenkinsLet’s start Continuous Integration with jenkins
Let’s start Continuous Integration with jenkinsTomohide Kakeya
 
CI/CD with Jenkins and Docker - DevOps Meetup Day Thailand
CI/CD with Jenkins and Docker - DevOps Meetup Day ThailandCI/CD with Jenkins and Docker - DevOps Meetup Day Thailand
CI/CD with Jenkins and Docker - DevOps Meetup Day ThailandTroublemaker Khunpech
 
Continuous Integration (Jenkins/Hudson)
Continuous Integration (Jenkins/Hudson)Continuous Integration (Jenkins/Hudson)
Continuous Integration (Jenkins/Hudson)Dennys Hsieh
 
Introducing CI/CD to Engineering Teams - By: Matt Brunsdon
Introducing CI/CD to Engineering Teams - By: Matt BrunsdonIntroducing CI/CD to Engineering Teams - By: Matt Brunsdon
Introducing CI/CD to Engineering Teams - By: Matt BrunsdonMatt Brunsdon
 
OpenTuesday: Aktuelle Standards der agilen Softwareentwicklung
OpenTuesday: Aktuelle Standards der agilen SoftwareentwicklungOpenTuesday: Aktuelle Standards der agilen Softwareentwicklung
OpenTuesday: Aktuelle Standards der agilen SoftwareentwicklungDigicomp Academy AG
 

La actualidad más candente (20)

Jfokus 2017 - The DevOps Disaster
Jfokus 2017 - The DevOps Disaster Jfokus 2017 - The DevOps Disaster
Jfokus 2017 - The DevOps Disaster
 
Jenkins CI
Jenkins CIJenkins CI
Jenkins CI
 
Devops | CICD Pipeline
Devops | CICD PipelineDevops | CICD Pipeline
Devops | CICD Pipeline
 
Jenkins Introduction
Jenkins IntroductionJenkins Introduction
Jenkins Introduction
 
Continuous Integration, Build Pipelines and Continuous Deployment
Continuous Integration, Build Pipelines and Continuous DeploymentContinuous Integration, Build Pipelines and Continuous Deployment
Continuous Integration, Build Pipelines and Continuous Deployment
 
Part 2 improving your software development v1.0
Part 2   improving your software development v1.0Part 2   improving your software development v1.0
Part 2 improving your software development v1.0
 
Continuous integration and delivery
Continuous integration and deliveryContinuous integration and delivery
Continuous integration and delivery
 
Flusso Continuous Integration & Continuous Delivery
Flusso Continuous Integration & Continuous DeliveryFlusso Continuous Integration & Continuous Delivery
Flusso Continuous Integration & Continuous Delivery
 
Continuous integration using jenkins
Continuous integration using jenkinsContinuous integration using jenkins
Continuous integration using jenkins
 
不只自動化而且更敏捷的Android開發工具 gradle
不只自動化而且更敏捷的Android開發工具 gradle不只自動化而且更敏捷的Android開發工具 gradle
不只自動化而且更敏捷的Android開發工具 gradle
 
Jenkins tutorial
Jenkins tutorialJenkins tutorial
Jenkins tutorial
 
Jenkins CI
Jenkins CIJenkins CI
Jenkins CI
 
Dev-QA-Ops UNICOM WCNGT 2014 Bangalore
Dev-QA-Ops UNICOM WCNGT 2014 BangaloreDev-QA-Ops UNICOM WCNGT 2014 Bangalore
Dev-QA-Ops UNICOM WCNGT 2014 Bangalore
 
Standardizing Jenkins with CloudBees Jenkins Team
Standardizing Jenkins with CloudBees Jenkins TeamStandardizing Jenkins with CloudBees Jenkins Team
Standardizing Jenkins with CloudBees Jenkins Team
 
Let’s start Continuous Integration with jenkins
Let’s start Continuous Integration with jenkinsLet’s start Continuous Integration with jenkins
Let’s start Continuous Integration with jenkins
 
Continuous integration
Continuous integrationContinuous integration
Continuous integration
 
CI/CD with Jenkins and Docker - DevOps Meetup Day Thailand
CI/CD with Jenkins and Docker - DevOps Meetup Day ThailandCI/CD with Jenkins and Docker - DevOps Meetup Day Thailand
CI/CD with Jenkins and Docker - DevOps Meetup Day Thailand
 
Continuous Integration (Jenkins/Hudson)
Continuous Integration (Jenkins/Hudson)Continuous Integration (Jenkins/Hudson)
Continuous Integration (Jenkins/Hudson)
 
Introducing CI/CD to Engineering Teams - By: Matt Brunsdon
Introducing CI/CD to Engineering Teams - By: Matt BrunsdonIntroducing CI/CD to Engineering Teams - By: Matt Brunsdon
Introducing CI/CD to Engineering Teams - By: Matt Brunsdon
 
OpenTuesday: Aktuelle Standards der agilen Softwareentwicklung
OpenTuesday: Aktuelle Standards der agilen SoftwareentwicklungOpenTuesday: Aktuelle Standards der agilen Softwareentwicklung
OpenTuesday: Aktuelle Standards der agilen Softwareentwicklung
 

Destacado

Урок БП: Параллели истории
Урок БП: Параллели историиУрок БП: Параллели истории
Урок БП: Параллели историиUnification_Ru
 
WeTalk 01, English Environment, 20160507
WeTalk 01, English Environment, 20160507WeTalk 01, English Environment, 20160507
WeTalk 01, English Environment, 20160507Duy (Donald) DOAN
 
Vy Le_Goldman Sachs Stock Valuatio Project
Vy Le_Goldman Sachs Stock Valuatio ProjectVy Le_Goldman Sachs Stock Valuatio Project
Vy Le_Goldman Sachs Stock Valuatio ProjectVy Le
 
Oppimisen tilat – näkökulmia tulevaisuuden kouluun ja oppilaitosrakentamiseen
Oppimisen tilat – näkökulmia tulevaisuuden kouluun ja oppilaitosrakentamiseenOppimisen tilat – näkökulmia tulevaisuuden kouluun ja oppilaitosrakentamiseen
Oppimisen tilat – näkökulmia tulevaisuuden kouluun ja oppilaitosrakentamiseenSatu Aksovaara
 
Medialunas de panaderia
Medialunas de panaderiaMedialunas de panaderia
Medialunas de panaderiaMarcos Holgado
 
Necesidades educativas especiales
Necesidades educativas especialesNecesidades educativas especiales
Necesidades educativas especialesJosselineCC
 
第4回 Machine Learning 15minutes!
第4回 Machine Learning 15minutes!第4回 Machine Learning 15minutes!
第4回 Machine Learning 15minutes!XCompass
 
Genres Of Music During Spanish Time
Genres Of Music During Spanish TimeGenres Of Music During Spanish Time
Genres Of Music During Spanish Timeteruzmo_647
 
s.chand-CURRICULUM VITAE
s.chand-CURRICULUM VITAEs.chand-CURRICULUM VITAE
s.chand-CURRICULUM VITAEshree chand
 
Placenta y Membranas Fetales
Placenta y Membranas FetalesPlacenta y Membranas Fetales
Placenta y Membranas FetalesElda Soto
 

Destacado (15)

Урок БП: Параллели истории
Урок БП: Параллели историиУрок БП: Параллели истории
Урок БП: Параллели истории
 
Kansalaisopistot somessa
Kansalaisopistot somessaKansalaisopistot somessa
Kansalaisopistot somessa
 
WeTalk 01, English Environment, 20160507
WeTalk 01, English Environment, 20160507WeTalk 01, English Environment, 20160507
WeTalk 01, English Environment, 20160507
 
Raghavendra Prasad Reddy_resume
Raghavendra Prasad Reddy_resumeRaghavendra Prasad Reddy_resume
Raghavendra Prasad Reddy_resume
 
farouk cv ..
farouk cv ..farouk cv ..
farouk cv ..
 
Vy Le_Goldman Sachs Stock Valuatio Project
Vy Le_Goldman Sachs Stock Valuatio ProjectVy Le_Goldman Sachs Stock Valuatio Project
Vy Le_Goldman Sachs Stock Valuatio Project
 
Oppimisen tilat – näkökulmia tulevaisuuden kouluun ja oppilaitosrakentamiseen
Oppimisen tilat – näkökulmia tulevaisuuden kouluun ja oppilaitosrakentamiseenOppimisen tilat – näkökulmia tulevaisuuden kouluun ja oppilaitosrakentamiseen
Oppimisen tilat – näkökulmia tulevaisuuden kouluun ja oppilaitosrakentamiseen
 
Medialunas de panaderia
Medialunas de panaderiaMedialunas de panaderia
Medialunas de panaderia
 
Necesidades educativas especiales
Necesidades educativas especialesNecesidades educativas especiales
Necesidades educativas especiales
 
Mohamed Abdel Aziz CV 2015
Mohamed Abdel Aziz CV 2015Mohamed Abdel Aziz CV 2015
Mohamed Abdel Aziz CV 2015
 
第4回 Machine Learning 15minutes!
第4回 Machine Learning 15minutes!第4回 Machine Learning 15minutes!
第4回 Machine Learning 15minutes!
 
Genres Of Music During Spanish Time
Genres Of Music During Spanish TimeGenres Of Music During Spanish Time
Genres Of Music During Spanish Time
 
s.chand-CURRICULUM VITAE
s.chand-CURRICULUM VITAEs.chand-CURRICULUM VITAE
s.chand-CURRICULUM VITAE
 
TALLER NECESIDADES EDUCATIVAS ESPECIALES
TALLER NECESIDADES EDUCATIVAS ESPECIALESTALLER NECESIDADES EDUCATIVAS ESPECIALES
TALLER NECESIDADES EDUCATIVAS ESPECIALES
 
Placenta y Membranas Fetales
Placenta y Membranas FetalesPlacenta y Membranas Fetales
Placenta y Membranas Fetales
 

Similar a JenkinsCIdocumentations-removedcredentials.docx

Continuous Integration - What even is it?
Continuous Integration - What even is it?Continuous Integration - What even is it?
Continuous Integration - What even is it?Rob Jacoby
 
Lets talk about CI CD Pipeline in Agile
Lets talk about CI CD Pipeline in Agile Lets talk about CI CD Pipeline in Agile
Lets talk about CI CD Pipeline in Agile Poonam Panday
 
Continuous Delivery concept overview. Continuous Integration Systems. DevOps ...
Continuous Delivery concept overview. Continuous Integration Systems. DevOps ...Continuous Delivery concept overview. Continuous Integration Systems. DevOps ...
Continuous Delivery concept overview. Continuous Integration Systems. DevOps ...eleksdev
 
Continuous Integration Approach
Continuous Integration ApproachContinuous Integration Approach
Continuous Integration ApproachNigel Thurlow
 
Software engineering
Software engineeringSoftware engineering
Software engineeringbartlowe
 
CI and CD with Jenkins
CI and CD with JenkinsCI and CD with Jenkins
CI and CD with JenkinsMartin Málek
 
Continuous Integration
Continuous IntegrationContinuous Integration
Continuous IntegrationJoseph Wang
 
Continous integration and delivery for single page applications
Continous integration and delivery for single page applicationsContinous integration and delivery for single page applications
Continous integration and delivery for single page applicationsSunil Dalal
 
What is Continuous Integration and Continuous Delivery
What is Continuous Integration and Continuous Delivery What is Continuous Integration and Continuous Delivery
What is Continuous Integration and Continuous Delivery Sarah Elson
 
Flight East 2018 Presentation–Continuous Integration––An Overview
Flight East 2018 Presentation–Continuous Integration––An OverviewFlight East 2018 Presentation–Continuous Integration––An Overview
Flight East 2018 Presentation–Continuous Integration––An OverviewSynopsys Software Integrity Group
 
CI/CD (DevOps) 101
CI/CD (DevOps) 101CI/CD (DevOps) 101
CI/CD (DevOps) 101Hazzim Anaya
 
Using Continuous Integration To Ensure Project Health New
Using Continuous Integration To Ensure Project Health NewUsing Continuous Integration To Ensure Project Health New
Using Continuous Integration To Ensure Project Health Newbartlowe
 
Continuous integration and delivery for java based web applications
Continuous integration and delivery for java based web applicationsContinuous integration and delivery for java based web applications
Continuous integration and delivery for java based web applicationsSunil Dalal
 
Introducing Continuous Integration Using Vsts
Introducing Continuous Integration Using VstsIntroducing Continuous Integration Using Vsts
Introducing Continuous Integration Using VstsMohamed Samy
 
How to win at DevOps (and understand it along the way)
How to win at DevOps (and understand it along the way)How to win at DevOps (and understand it along the way)
How to win at DevOps (and understand it along the way)Jimmy Puckett
 
Enabling Agile Testing Through Continuous Integration Agile2009
Enabling Agile Testing Through Continuous Integration Agile2009Enabling Agile Testing Through Continuous Integration Agile2009
Enabling Agile Testing Through Continuous Integration Agile2009sstolberg
 
Continuous Everything
Continuous EverythingContinuous Everything
Continuous EverythingAndrea Tino
 

Similar a JenkinsCIdocumentations-removedcredentials.docx (20)

Continuous Integration - What even is it?
Continuous Integration - What even is it?Continuous Integration - What even is it?
Continuous Integration - What even is it?
 
Lets talk about CI CD Pipeline in Agile
Lets talk about CI CD Pipeline in Agile Lets talk about CI CD Pipeline in Agile
Lets talk about CI CD Pipeline in Agile
 
Continuous Delivery concept overview. Continuous Integration Systems. DevOps ...
Continuous Delivery concept overview. Continuous Integration Systems. DevOps ...Continuous Delivery concept overview. Continuous Integration Systems. DevOps ...
Continuous Delivery concept overview. Continuous Integration Systems. DevOps ...
 
Continuous Integration Approach
Continuous Integration ApproachContinuous Integration Approach
Continuous Integration Approach
 
Software engineering
Software engineeringSoftware engineering
Software engineering
 
CI and CD with Jenkins
CI and CD with JenkinsCI and CD with Jenkins
CI and CD with Jenkins
 
Devops insights
Devops insightsDevops insights
Devops insights
 
Continuous Integration
Continuous IntegrationContinuous Integration
Continuous Integration
 
Continous integration and delivery for single page applications
Continous integration and delivery for single page applicationsContinous integration and delivery for single page applications
Continous integration and delivery for single page applications
 
What is Continuous Integration and Continuous Delivery
What is Continuous Integration and Continuous Delivery What is Continuous Integration and Continuous Delivery
What is Continuous Integration and Continuous Delivery
 
Flight East 2018 Presentation–Continuous Integration––An Overview
Flight East 2018 Presentation–Continuous Integration––An OverviewFlight East 2018 Presentation–Continuous Integration––An Overview
Flight East 2018 Presentation–Continuous Integration––An Overview
 
CI/CD (DevOps) 101
CI/CD (DevOps) 101CI/CD (DevOps) 101
CI/CD (DevOps) 101
 
Using Continuous Integration To Ensure Project Health New
Using Continuous Integration To Ensure Project Health NewUsing Continuous Integration To Ensure Project Health New
Using Continuous Integration To Ensure Project Health New
 
Continuous integration and delivery for java based web applications
Continuous integration and delivery for java based web applicationsContinuous integration and delivery for java based web applications
Continuous integration and delivery for java based web applications
 
Introducing Continuous Integration Using Vsts
Introducing Continuous Integration Using VstsIntroducing Continuous Integration Using Vsts
Introducing Continuous Integration Using Vsts
 
How to win at DevOps (and understand it along the way)
How to win at DevOps (and understand it along the way)How to win at DevOps (and understand it along the way)
How to win at DevOps (and understand it along the way)
 
Continuous integration
Continuous integration Continuous integration
Continuous integration
 
Enabling Agile Testing Through Continuous Integration Agile2009
Enabling Agile Testing Through Continuous Integration Agile2009Enabling Agile Testing Through Continuous Integration Agile2009
Enabling Agile Testing Through Continuous Integration Agile2009
 
Continuous Everything
Continuous EverythingContinuous Everything
Continuous Everything
 
Contineous integration
Contineous integrationContineous integration
Contineous integration
 

JenkinsCIdocumentations-removedcredentials.docx