SlideShare a Scribd company logo
1 of 35
Introduction
• University Faculty       • Employee - IT
                             Company
• Batch, Pascal, PERL,     • Shell Scripts
  Javascript, C++, JAVA
• DUNE2                    • Modern Conflict


• I love to visit all the nearby islands of Cebu.
• Introduce version control and CI
• Focus only on Subversion and Jenkins
• Discuss about installation and getting started
  with these tools.
• Sharing of personal experiences pertaining to
  the tools mentioned is also encouraged during
  the Q&A.
Version Control
• Also known as revision control.

• According to http://www.smashingmagazine.com/ the
  most obvious benefit of revision control is
   – ability to have an unlimited number of people
     working on the same code base, without having to
     constantly send files back and forth.
Models of Version Control Software
• Local data Model

• Client-Server Model



• Distributed Model
Version Control in the Market
• Proprietary
  – BitKeeper
  – PVCS
  – Synergy
  – Perforce
  – ClearCase
  – Visual SourceSafe
  – Rational Team Concert
Version Control in the Market
• Open Source
  – Concurrent Versions System (CVS)
  – Subversion (SVN)
  – Distributed Concurrent Versions System (DCVS)
  – Bazaar
  – Mercurial
  – Git
• Triggered development by CollabNet, Inc in early
  2000
• Took 14 months to develop
• Became part of ASF's family of top-level projects
  on early 2010.

• Book titled Version Control with Subversion can
  be found and/or downloaded at
           http://svnbook.red-bean.com/
• Subversion current version is 1.7
Subversion repository
Repository access URLs
Schema         Access method
file:///       Direct repository access (on local disk)
http://        Access via WebDAV protocol to Subversion-aware Apache server
https://       Same as http://, but with SSL encryption
svn://         Access via custom protocol to an svnserve server
svn+ssh://     Same as svn://, but through an SSH tunnel
5 steps to getting started
              (Version Control)
1.   Download and install
2.   Create the repository
3.   Set-up authentication
4.   Customize (e.g. pre-commit hooks)
5.   Perform maintenance like backups
Create the repository
• Create the directory
  mkdir –p /var/www/svn
• Create the repo
  cd /var/www/svn
  svnadmin create myrepo
• Access the repo via http
  http://143.143.143.143/svn/myrepo
Content of subversion.conf
LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so
<Location /svn>
 DAV svn
 SVNParentPath /var/www/svn
 AuthType Basic
 AuthName "Subversion repositories"
 AuthUserFile /etc/httpd/svn-users.passwd
 Require valid-user
</Location>
Structure of SVN Repository
• trunk - directory to hold the “main line” of
  development;
• branches - directory to contain branch copies;
• tags - directory to contain tag copies;
Customize
• Use of hooks like pre-commit
• The pre-commit hook is run just before a
  commit transaction is promoted to a new
  revision.
• Useful for freezing a release and/or requiring
  for log messages before revisions are
  committed to the repository.
• /var/www/svn/myrepo/hooks/pre-commit
Backups
• Full backup
  svnadmin hotcopy /var/www/svn/myrepo ~/repo-backup
  tar cjvhpf repo-backup.bz2 ~/repo-backup


• Incremental
  svnadmin dump /var/www/svn/myrepo –r 143:HEAD --
    incremental > `date +%s`.dump
Subversion Best Practices
1.   Use a sane repository layout
2.   Commit logical changesets
3.   Use the issue-tracker wisely
4.   Provide meaningful log message
5.   Know when to branch
Continuous Integration (CI)
• implements              processes of applying
           control —      pieces of      ,
  applied            .
• a set of software development practices,
  behaviors, and principles for automating and
  improving how to integrate and certify
  software continuously.
• Started around 1999
• to deliver stable, high-quality code
  consistently and quickly;
• detect and fix problems early;
• deliver quality software;
• reduce time to market of the finish product;
Principles
•   Maintain a Single Source Repository
•   Automate the Build
•   Make Your Build Self-Testing
•   Everyone Commits To the Mainline Every Day
•   Every Commit Should Build the Mainline on an
    Integration Machine
•   Keep the Build Fast
•   Test in a Clone of the Production Environment
•   Make it Easy for Anyone to Get the Latest Executable
•   Everyone can see what's happening
•   Automate Deployment
CI in the Market
• Proprietary
  – Build Forge
  – AnthillPro
  – BuildMaster
  – TeamCity
CI in the Market
• OpenSource
  – CruiseControl
  – Jenkins/Hudson
4 steps to getting started (Jenkins)
1.   Download and install
2.   Create and configure the project/job
3.   Run your first build
4.   Customize
http://jenkins-ci.org/
Configure Jenkins
New job/project
Plug-ins
• Over 400 plug-ins
• Source code management (e.g. Git, Mercurial)
• Artifact uploaders (e.g. Tomcat, JBOSS,
  Websphere)
• Build Reports (e.g. Cobertura, Sonar, Ruby)
• Authentication and user management
• UI Plugins
Reasons for CI
• Reports Any Build Failures to the Team
• Reduces the Risk of Integrating Code
     Private builds –> integration builds –> release builds
• Establishes Greater Confidence in the Product
  – Incorporated automated unit test in the build
• Improves the Efficiency of the Team
Reference:
• Internet

More Related Content

What's hot

Subversion Overview
Subversion OverviewSubversion Overview
Subversion Overview
polarion
 
SVN Usage & Best Practices
SVN Usage & Best PracticesSVN Usage & Best Practices
SVN Usage & Best Practices
Ashraf Fouad
 
Eclipse DemoCamp Bucharest 2014 - Continuous Integration Jenkins/Hudson
Eclipse DemoCamp Bucharest 2014 - Continuous Integration Jenkins/HudsonEclipse DemoCamp Bucharest 2014 - Continuous Integration Jenkins/Hudson
Eclipse DemoCamp Bucharest 2014 - Continuous Integration Jenkins/Hudson
VladLica
 

What's hot (20)

Subversion Overview
Subversion OverviewSubversion Overview
Subversion Overview
 
SVN Usage & Best Practices
SVN Usage & Best PracticesSVN Usage & Best Practices
SVN Usage & Best Practices
 
Getting Started With Subversion
Getting Started With SubversionGetting Started With Subversion
Getting Started With Subversion
 
Version control
Version controlVersion control
Version control
 
Hacking Jenkins
Hacking JenkinsHacking Jenkins
Hacking Jenkins
 
Jenkins Pipeline 101 and TCI - presentation and workshop
Jenkins Pipeline 101 and TCI - presentation and workshopJenkins Pipeline 101 and TCI - presentation and workshop
Jenkins Pipeline 101 and TCI - presentation and workshop
 
Subversion User Guide
Subversion User GuideSubversion User Guide
Subversion User Guide
 
A brief introduction to version control systems
A brief introduction to version control systemsA brief introduction to version control systems
A brief introduction to version control systems
 
Svn Basic Tutorial
Svn Basic TutorialSvn Basic Tutorial
Svn Basic Tutorial
 
Nguyễn Vũ Hưng: Subversion best practices
Nguyễn Vũ Hưng: Subversion best practicesNguyễn Vũ Hưng: Subversion best practices
Nguyễn Vũ Hưng: Subversion best practices
 
Version control
Version controlVersion control
Version control
 
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
 
Version Control with Subversion
Version Control with SubversionVersion Control with Subversion
Version Control with Subversion
 
Jenkins
JenkinsJenkins
Jenkins
 
Jenkins Pipeline Tutorial | Continuous Delivery Pipeline Using Jenkins | DevO...
Jenkins Pipeline Tutorial | Continuous Delivery Pipeline Using Jenkins | DevO...Jenkins Pipeline Tutorial | Continuous Delivery Pipeline Using Jenkins | DevO...
Jenkins Pipeline Tutorial | Continuous Delivery Pipeline Using Jenkins | DevO...
 
Hudson
HudsonHudson
Hudson
 
7 Habits of Highly Effective Jenkins Users
7 Habits of Highly Effective Jenkins Users7 Habits of Highly Effective Jenkins Users
7 Habits of Highly Effective Jenkins Users
 
SVN Best Practices
SVN Best PracticesSVN Best Practices
SVN Best Practices
 
Eclipse DemoCamp Bucharest 2014 - Continuous Integration Jenkins/Hudson
Eclipse DemoCamp Bucharest 2014 - Continuous Integration Jenkins/HudsonEclipse DemoCamp Bucharest 2014 - Continuous Integration Jenkins/Hudson
Eclipse DemoCamp Bucharest 2014 - Continuous Integration Jenkins/Hudson
 
Evolution of deploy.sh
Evolution of deploy.shEvolution of deploy.sh
Evolution of deploy.sh
 

Viewers also liked

Expo final franquicia de retiro
Expo final franquicia de retiroExpo final franquicia de retiro
Expo final franquicia de retiro
LiliPolo
 
Introduction to Version Control and Configuration Management
Introduction to Version Control and Configuration ManagementIntroduction to Version Control and Configuration Management
Introduction to Version Control and Configuration Management
Philip Johnson
 
Continuous integration
Continuous integrationContinuous integration
Continuous integration
amscanne
 
Adultos mayores descuidados power point
Adultos mayores descuidados power pointAdultos mayores descuidados power point
Adultos mayores descuidados power point
GABRIELA2704
 
Continuous Integration (Jenkins/Hudson)
Continuous Integration (Jenkins/Hudson)Continuous Integration (Jenkins/Hudson)
Continuous Integration (Jenkins/Hudson)
Dennys Hsieh
 

Viewers also liked (13)

Quality assurance ppt
Quality assurance pptQuality assurance ppt
Quality assurance ppt
 
Expo final franquicia de retiro
Expo final franquicia de retiroExpo final franquicia de retiro
Expo final franquicia de retiro
 
Version control:
Version control:Version control:
Version control:
 
DataHub
DataHubDataHub
DataHub
 
What is version control software and why do you need it?
What is version control software and why do you need it?What is version control software and why do you need it?
What is version control software and why do you need it?
 
Introduction to Version Control and Configuration Management
Introduction to Version Control and Configuration ManagementIntroduction to Version Control and Configuration Management
Introduction to Version Control and Configuration Management
 
Continuous integration
Continuous integrationContinuous integration
Continuous integration
 
Adultos mayores descuidados power point
Adultos mayores descuidados power pointAdultos mayores descuidados power point
Adultos mayores descuidados power point
 
Jenkins CI
Jenkins CIJenkins CI
Jenkins CI
 
Continuous Integration (Jenkins/Hudson)
Continuous Integration (Jenkins/Hudson)Continuous Integration (Jenkins/Hudson)
Continuous Integration (Jenkins/Hudson)
 
Managing Requirements in Agile Development - Best Practices for Tool-Based Re...
Managing Requirements in Agile Development - Best Practices for Tool-Based Re...Managing Requirements in Agile Development - Best Practices for Tool-Based Re...
Managing Requirements in Agile Development - Best Practices for Tool-Based Re...
 
ADULTO MAYOR
ADULTO MAYOR ADULTO MAYOR
ADULTO MAYOR
 
Introduction To Software Quality Assurance
Introduction To Software Quality AssuranceIntroduction To Software Quality Assurance
Introduction To Software Quality Assurance
 

Similar to Version Control and Continuous Integration

Continuous deployment steve povilaitis
Continuous deployment   steve povilaitisContinuous deployment   steve povilaitis
Continuous deployment steve povilaitis
Steve Povilaitis
 
Oscon London 2016 - Docker from Development to Production
Oscon London 2016 - Docker from Development to ProductionOscon London 2016 - Docker from Development to Production
Oscon London 2016 - Docker from Development to Production
Patrick Chanezon
 

Similar to Version Control and Continuous Integration (20)

Versioning for Developers
Versioning for DevelopersVersioning for Developers
Versioning for Developers
 
Ci jenkins maven svn
Ci jenkins maven svnCi jenkins maven svn
Ci jenkins maven svn
 
Continuous deployment steve povilaitis
Continuous deployment   steve povilaitisContinuous deployment   steve povilaitis
Continuous deployment steve povilaitis
 
Devops architecture
Devops architectureDevops architecture
Devops architecture
 
Fluo CICD OpenStack Summit
Fluo CICD OpenStack SummitFluo CICD OpenStack Summit
Fluo CICD OpenStack Summit
 
Session 2
Session 2Session 2
Session 2
 
Session 2
Session 2Session 2
Session 2
 
Continuous Integration for OpenVMS with Jenkins
Continuous Integration for OpenVMS with JenkinsContinuous Integration for OpenVMS with Jenkins
Continuous Integration for OpenVMS with Jenkins
 
Towards Continuous Delivery in Mobile Apps
Towards Continuous Delivery in Mobile AppsTowards Continuous Delivery in Mobile Apps
Towards Continuous Delivery in Mobile Apps
 
Inspec: Turn your compliance, security, and other policy requirements into au...
Inspec: Turn your compliance, security, and other policy requirements into au...Inspec: Turn your compliance, security, and other policy requirements into au...
Inspec: Turn your compliance, security, and other policy requirements into au...
 
InSpec - June 2018 at Open28.be
InSpec - June 2018 at Open28.beInSpec - June 2018 at Open28.be
InSpec - June 2018 at Open28.be
 
Getting to Walk with DevOps
Getting to Walk with DevOpsGetting to Walk with DevOps
Getting to Walk with DevOps
 
Oscon London 2016 - Docker from Development to Production
Oscon London 2016 - Docker from Development to ProductionOscon London 2016 - Docker from Development to Production
Oscon London 2016 - Docker from Development to Production
 
Jenkins.pdf
Jenkins.pdfJenkins.pdf
Jenkins.pdf
 
Build Time Hacking
Build Time HackingBuild Time Hacking
Build Time Hacking
 
Securing applications
Securing applicationsSecuring applications
Securing applications
 
Super chargeyourcontiniousintegrationdeployments
Super chargeyourcontiniousintegrationdeploymentsSuper chargeyourcontiniousintegrationdeployments
Super chargeyourcontiniousintegrationdeployments
 
Supercharge Your Continuous Integration Deployments
Supercharge Your Continuous Integration DeploymentsSupercharge Your Continuous Integration Deployments
Supercharge Your Continuous Integration Deployments
 
Using Chef InSpec for Infrastructure Security
Using Chef InSpec for Infrastructure SecurityUsing Chef InSpec for Infrastructure Security
Using Chef InSpec for Infrastructure Security
 
Prescriptive System Security with InSpec
Prescriptive System Security with InSpecPrescriptive System Security with InSpec
Prescriptive System Security with InSpec
 

Recently uploaded

Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Recently uploaded (20)

Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source Milvus
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 

Version Control and Continuous Integration

  • 1.
  • 2. Introduction • University Faculty • Employee - IT Company • Batch, Pascal, PERL, • Shell Scripts Javascript, C++, JAVA • DUNE2 • Modern Conflict • I love to visit all the nearby islands of Cebu.
  • 3. • Introduce version control and CI • Focus only on Subversion and Jenkins • Discuss about installation and getting started with these tools. • Sharing of personal experiences pertaining to the tools mentioned is also encouraged during the Q&A.
  • 4. Version Control • Also known as revision control. • According to http://www.smashingmagazine.com/ the most obvious benefit of revision control is – ability to have an unlimited number of people working on the same code base, without having to constantly send files back and forth.
  • 5. Models of Version Control Software • Local data Model • Client-Server Model • Distributed Model
  • 6. Version Control in the Market • Proprietary – BitKeeper – PVCS – Synergy – Perforce – ClearCase – Visual SourceSafe – Rational Team Concert
  • 7. Version Control in the Market • Open Source – Concurrent Versions System (CVS) – Subversion (SVN) – Distributed Concurrent Versions System (DCVS) – Bazaar – Mercurial – Git
  • 8. • Triggered development by CollabNet, Inc in early 2000 • Took 14 months to develop • Became part of ASF's family of top-level projects on early 2010. • Book titled Version Control with Subversion can be found and/or downloaded at http://svnbook.red-bean.com/ • Subversion current version is 1.7
  • 9.
  • 11. Repository access URLs Schema Access method file:/// Direct repository access (on local disk) http:// Access via WebDAV protocol to Subversion-aware Apache server https:// Same as http://, but with SSL encryption svn:// Access via custom protocol to an svnserve server svn+ssh:// Same as svn://, but through an SSH tunnel
  • 12. 5 steps to getting started (Version Control) 1. Download and install 2. Create the repository 3. Set-up authentication 4. Customize (e.g. pre-commit hooks) 5. Perform maintenance like backups
  • 13. Create the repository • Create the directory mkdir –p /var/www/svn • Create the repo cd /var/www/svn svnadmin create myrepo • Access the repo via http http://143.143.143.143/svn/myrepo
  • 14. Content of subversion.conf LoadModule dav_svn_module modules/mod_dav_svn.so LoadModule authz_svn_module modules/mod_authz_svn.so <Location /svn> DAV svn SVNParentPath /var/www/svn AuthType Basic AuthName "Subversion repositories" AuthUserFile /etc/httpd/svn-users.passwd Require valid-user </Location>
  • 15. Structure of SVN Repository • trunk - directory to hold the “main line” of development; • branches - directory to contain branch copies; • tags - directory to contain tag copies;
  • 16. Customize • Use of hooks like pre-commit • The pre-commit hook is run just before a commit transaction is promoted to a new revision. • Useful for freezing a release and/or requiring for log messages before revisions are committed to the repository. • /var/www/svn/myrepo/hooks/pre-commit
  • 17. Backups • Full backup svnadmin hotcopy /var/www/svn/myrepo ~/repo-backup tar cjvhpf repo-backup.bz2 ~/repo-backup • Incremental svnadmin dump /var/www/svn/myrepo –r 143:HEAD -- incremental > `date +%s`.dump
  • 18. Subversion Best Practices 1. Use a sane repository layout 2. Commit logical changesets 3. Use the issue-tracker wisely 4. Provide meaningful log message 5. Know when to branch
  • 19. Continuous Integration (CI) • implements processes of applying control — pieces of , applied . • a set of software development practices, behaviors, and principles for automating and improving how to integrate and certify software continuously. • Started around 1999
  • 20. • to deliver stable, high-quality code consistently and quickly; • detect and fix problems early; • deliver quality software; • reduce time to market of the finish product;
  • 21.
  • 22. Principles • Maintain a Single Source Repository • Automate the Build • Make Your Build Self-Testing • Everyone Commits To the Mainline Every Day • Every Commit Should Build the Mainline on an Integration Machine • Keep the Build Fast • Test in a Clone of the Production Environment • Make it Easy for Anyone to Get the Latest Executable • Everyone can see what's happening • Automate Deployment
  • 23. CI in the Market • Proprietary – Build Forge – AnthillPro – BuildMaster – TeamCity
  • 24. CI in the Market • OpenSource – CruiseControl – Jenkins/Hudson
  • 25. 4 steps to getting started (Jenkins) 1. Download and install 2. Create and configure the project/job 3. Run your first build 4. Customize
  • 29.
  • 30.
  • 31. Plug-ins • Over 400 plug-ins • Source code management (e.g. Git, Mercurial) • Artifact uploaders (e.g. Tomcat, JBOSS, Websphere) • Build Reports (e.g. Cobertura, Sonar, Ruby) • Authentication and user management • UI Plugins
  • 32. Reasons for CI • Reports Any Build Failures to the Team • Reduces the Risk of Integrating Code Private builds –> integration builds –> release builds • Establishes Greater Confidence in the Product – Incorporated automated unit test in the build • Improves the Efficiency of the Team
  • 33.
  • 34.

Editor's Notes

  1. Jenkins will center on Java
  2. What? Background and HistoryWhy? Reasons for usageTell how it is done before (e.g. one to two users only doing the development)http://www.smashingmagazine.com/2008/09/18/the-top-7-open-source-version-control-systems/
  3. &gt;all developers must use the same computer system.&gt;developers use a shared single repository.&gt;each developer works directly with his or her own local repository, and changes are shared between repositories as a separate stephttp://en.wikipedia.org/wiki/List_of_revision_control_software
  4. Green – client-server modelBrown – distributed modelGet a show of hand of who is using what and take note http://en.wikipedia.org/wiki/List_of_revision_control_softwareTell the story about the BitKeeper being used by Linux Kernel before they created Git.
  5. Green – client-server modelBrown – distributed modelGet a show of hand of who is using what and take note
  6. An “upgrade” to CVS before.ASF – Apache Software FoundationSelf-hosting used on August 31, 2001
  7. http://svnbook.red-bean.com/en/1.7/svn.intro.whatis.html#svn.intro.architecture.dia-1For our example, assumption is Linux OSFSFS database; andusing DAV over Apache
  8. http://svnbook.red-bean.com/en/1.7/svn.reposadmin.planning.html#svn.reposadmin.projects.chooselayout
  9. Built-in repository browsing is available via web browser using the http against using svn.For details on what access to use http://svnbook.red-bean.com/en/1.7/svn.serverconfig.choosing.htmlFor subversion clients, see http://en.wikipedia.org/wiki/Comparison_of_Subversion_clients
  10. Determine the OS and note of the requirements (disk space, memory) but with most HW specs these days it is not anymore of concern.
  11. Note that /var/www/svn/myrepo directory will be created after svnadmin is executed.
  12. Where svn-users.passwd contains the users and passwords for subversion access via HTTP.Usehtpasswd to create the password file and add usersTo enable fine grain access then seeAuthzSVNAccessFile apache attributeModifying this would require HTTP service to be restarted;Check out http://svnbook.red-bean.com/en/1.7/svn.serverconfig.httpd.html for details.
  13. Svnredbook:
  14. Make sure to verify the copied repo using command below:svnadmin verify /someplace/repo-backupFor incremental, backup is done from revision 143 to the latest one (HEAD)
  15. From http://svn.apache.org/repos/asf/subversion/trunk/doc/user/svn-best-practices.htmlChangesets – bugfixes, new features or enhancements
  16. What?Why?http://en.wikipedia.org/wiki/Continuous_integration
  17. Continuous integration avoids or detects compatibility problems early. Integration is a &quot;pay me now or pay me more later&quot; kind of activity. Integration is similar to credit card: either you pay now or pay more later.http://www.extremeprogramming.org/rules/integrateoften.html
  18. http://www.martinfowler.com/articles/continuousIntegration.html by Martin Fowler
  19. Get a show of hand and take note
  20. Get a show of hand and take noteTell briefstory about Hudson (Oracle) and Jenkins.
  21. You would need java and maven installed. Memory is a factor when determining the HW specs.Biased on use of Subversion
  22. Set-up Maven and JDK needed before proceeding with the set-up.Enable security is recommended pick the Security Realm and Authorization
  23. Once you click on Subversion under Source Code Management, the path to the repository needs to be supplied.
  24. Email the status of the latest buildsReduces the Time to Find Integration IssuesUnit tests are included during buildsAutomation compiling and packages allow the developers to concentrate more on the coding and fixing broken builds quickly and fix them ASAPA Practical Guide to Distributed Scrum by  Elizabeth Woodward, SteffanSurdek and Matthew Ganis
  25. http://en.wikipedia.org/wiki/Comparison_of_revision_control_softwarehttp://en.wikipedia.org/wiki/Comparison_of_Continuous_Integration_Softwarehttp://www.extremeprogramming.org/rules/integrateoften.html