Version Control and Continuous Integration
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
Version Control and Continuous Integration
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;
Version Control and Continuous Integration
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
Version Control and Continuous Integration
Version Control and Continuous Integration
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
Version Control and Continuous Integration
Version Control and Continuous Integration
Reference:
• Internet

More Related Content

PDF
Version Control With Subversion
ODP
Introduction to Version Control
PPT
Part 4 - Managing your svn repository using jas forge
PDF
Subversion Best Practices
PPT
SVN Tool Information : Best Practices
PDF
Introduction to Subversion
PPTX
SVN Basics
PPTX
Jenkins presentation
Version Control With Subversion
Introduction to Version Control
Part 4 - Managing your svn repository using jas forge
Subversion Best Practices
SVN Tool Information : Best Practices
Introduction to Subversion
SVN Basics
Jenkins presentation

What's hot (20)

PPT
Subversion Overview
PPT
SVN Usage & Best Practices
PPTX
Getting Started With Subversion
PPTX
Version control
PDF
Hacking Jenkins
PPTX
Jenkins Pipeline 101 and TCI - presentation and workshop
ODP
Subversion User Guide
PDF
A brief introduction to version control systems
ODP
Svn Basic Tutorial
ODP
Nguyễn Vũ Hưng: Subversion best practices
PPTX
Version control
PDF
Let’s start Continuous Integration with jenkins
PDF
Version Control with Subversion
PPTX
PDF
Jenkins Pipeline Tutorial | Continuous Delivery Pipeline Using Jenkins | DevO...
PPTX
Hudson
 
PDF
7 Habits of Highly Effective Jenkins Users
PPTX
SVN Best Practices
PPTX
Eclipse DemoCamp Bucharest 2014 - Continuous Integration Jenkins/Hudson
PDF
Evolution of deploy.sh
Subversion Overview
SVN Usage & Best Practices
Getting Started With Subversion
Version control
Hacking Jenkins
Jenkins Pipeline 101 and TCI - presentation and workshop
Subversion User Guide
A brief introduction to version control systems
Svn Basic Tutorial
Nguyễn Vũ Hưng: Subversion best practices
Version control
Let’s start Continuous Integration with jenkins
Version Control with Subversion
Jenkins Pipeline Tutorial | Continuous Delivery Pipeline Using Jenkins | DevO...
Hudson
 
7 Habits of Highly Effective Jenkins Users
SVN Best Practices
Eclipse DemoCamp Bucharest 2014 - Continuous Integration Jenkins/Hudson
Evolution of deploy.sh
Ad

Viewers also liked (13)

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

Similar to Version Control and Continuous Integration (20)

PDF
Versioning for Developers
PPTX
Ci jenkins maven svn
PPT
Continuous deployment steve povilaitis
PPTX
Devops architecture
PPTX
Fluo CICD OpenStack Summit
PPTX
Session 2
PPTX
Session 2
PPTX
Continuous Integration for OpenVMS with Jenkins
PPTX
Towards Continuous Delivery in Mobile Apps
PDF
Inspec: Turn your compliance, security, and other policy requirements into au...
PPTX
InSpec - June 2018 at Open28.be
PDF
Getting to Walk with DevOps
PPTX
Oscon London 2016 - Docker from Development to Production
PDF
PPTX
Build Time Hacking
PDF
stackconf 2024 | How to hack and defend (your) open source by Roman Zhukov.pdf
PDF
Securing applications
PPTX
Super chargeyourcontiniousintegrationdeployments
PPTX
Supercharge Your Continuous Integration Deployments
PPTX
Using Chef InSpec for Infrastructure Security
Versioning for Developers
Ci jenkins maven svn
Continuous deployment steve povilaitis
Devops architecture
Fluo CICD OpenStack Summit
Session 2
Session 2
Continuous Integration for OpenVMS with Jenkins
Towards Continuous Delivery in Mobile Apps
Inspec: Turn your compliance, security, and other policy requirements into au...
InSpec - June 2018 at Open28.be
Getting to Walk with DevOps
Oscon London 2016 - Docker from Development to Production
Build Time Hacking
stackconf 2024 | How to hack and defend (your) open source by Roman Zhukov.pdf
Securing applications
Super chargeyourcontiniousintegrationdeployments
Supercharge Your Continuous Integration Deployments
Using Chef InSpec for Infrastructure Security

Recently uploaded (20)

PDF
Revolutionizing recommendations a survey: a comprehensive exploration of mode...
PDF
Decision Optimization - From Theory to Practice
PDF
Domain-specific knowledge and context in large language models: challenges, c...
PDF
Optimizing bioinformatics applications: a novel approach with human protein d...
PPTX
Presentation - Principles of Instructional Design.pptx
PDF
“Introduction to Designing with AI Agents,” a Presentation from Amazon Web Se...
PDF
EGCB_Solar_Project_Presentation_and Finalcial Analysis.pdf
PDF
ELLIE29.pdfWETWETAWTAWETAETAETERTRTERTER
PDF
NewMind AI Journal Monthly Chronicles - August 2025
PDF
Introduction to c language from lecture slides
PDF
Uncertainty-aware contextual multi-armed bandits for recommendations in e-com...
PDF
Addressing the challenges of harmonizing law and artificial intelligence tech...
PPTX
Strategic Picks — Prioritising the Right Agentic Use Cases [2/6]
PDF
Human Computer Interaction Miterm Lesson
PDF
【AI論文解説】高速・高品質な生成を実現するFlow Map Models(Part 1~3)
PPTX
Rise of the Digital Control Grid Zeee Media and Hope and Tivon FTWProject.com
PDF
State of AI in Business 2025 - MIT NANDA
PDF
Peak of Data & AI Encore: Scalable Design & Infrastructure
PDF
Rooftops detection with YOLOv8 from aerial imagery and a brief review on roof...
PDF
Be ready for tomorrow’s needs with a longer-lasting, higher-performing PC
Revolutionizing recommendations a survey: a comprehensive exploration of mode...
Decision Optimization - From Theory to Practice
Domain-specific knowledge and context in large language models: challenges, c...
Optimizing bioinformatics applications: a novel approach with human protein d...
Presentation - Principles of Instructional Design.pptx
“Introduction to Designing with AI Agents,” a Presentation from Amazon Web Se...
EGCB_Solar_Project_Presentation_and Finalcial Analysis.pdf
ELLIE29.pdfWETWETAWTAWETAETAETERTRTERTER
NewMind AI Journal Monthly Chronicles - August 2025
Introduction to c language from lecture slides
Uncertainty-aware contextual multi-armed bandits for recommendations in e-com...
Addressing the challenges of harmonizing law and artificial intelligence tech...
Strategic Picks — Prioritising the Right Agentic Use Cases [2/6]
Human Computer Interaction Miterm Lesson
【AI論文解説】高速・高品質な生成を実現するFlow Map Models(Part 1~3)
Rise of the Digital Control Grid Zeee Media and Hope and Tivon FTWProject.com
State of AI in Business 2025 - MIT NANDA
Peak of Data & AI Encore: Scalable Design & Infrastructure
Rooftops detection with YOLOv8 from aerial imagery and a brief review on roof...
Be ready for tomorrow’s needs with a longer-lasting, higher-performing PC

Version Control and Continuous Integration

  • 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
  • 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;
  • 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
  • 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

Editor's Notes

  • #4: Jenkins will center on Java
  • #5: 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/
  • #6: &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
  • #7: 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.
  • #8: Green – client-server modelBrown – distributed modelGet a show of hand of who is using what and take note
  • #9: An “upgrade” to CVS before.ASF – Apache Software FoundationSelf-hosting used on August 31, 2001
  • #10: 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
  • #11: http://svnbook.red-bean.com/en/1.7/svn.reposadmin.planning.html#svn.reposadmin.projects.chooselayout
  • #12: 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
  • #13: Determine the OS and note of the requirements (disk space, memory) but with most HW specs these days it is not anymore of concern.
  • #14: Note that /var/www/svn/myrepo directory will be created after svnadmin is executed.
  • #15: 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.
  • #16: Svnredbook:
  • #18: 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)
  • #19: From http://svn.apache.org/repos/asf/subversion/trunk/doc/user/svn-best-practices.htmlChangesets – bugfixes, new features or enhancements
  • #20: What?Why?http://en.wikipedia.org/wiki/Continuous_integration
  • #22: 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
  • #23: http://www.martinfowler.com/articles/continuousIntegration.html by Martin Fowler
  • #24: Get a show of hand and take note
  • #25: Get a show of hand and take noteTell briefstory about Hudson (Oracle) and Jenkins.
  • #26: You would need java and maven installed. Memory is a factor when determining the HW specs.Biased on use of Subversion
  • #28: Set-up Maven and JDK needed before proceeding with the set-up.Enable security is recommended pick the Security Realm and Authorization
  • #30: Once you click on Subversion under Source Code Management, the path to the repository needs to be supplied.
  • #33: 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
  • #36: 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