OTC Tools Development and Release process. Igor Stoppa & Eduard Bartosh & JF Ding V May 2013

Size: px
Start display at page:

Download "OTC Tools Development and Release process. Igor Stoppa & Eduard Bartosh & JF Ding V May 2013"

Transcription

1 OTC Tools Development and Release process Igor Stoppa & Eduard Bartosh & JF Ding V May 2013

2 Purpose of the document This document describes development and release workflow for the following projects: Tools releases: bmap-tools, depanneur, gbs, git-buildpackage and mic QA Tools: CATS, QA Reports. These are released independently. Services packages: Jenkins-jobs, Jenkins-plugins, Jenkins-scripts, and all the packages for BOSS. For the above mentioned projects it s strongly recommended to follow the workflow and rules described in this document. For other projects it s up to the project maintainers to decide to use the workflow and rules described in this document, use them partly or not to use at all. In the following of this document, all the references of Tools names are for the convenience of description, which can be replaced by other different component name, e.g. Services 2 INTEL CONFIDENTIAL

3 devel patch A patch B submit for review (Jenkins) pre-review build & test OBS build in sandbox Development & Release Process (Gerrit) human review & acceptance gerrit devel branch (Jenkins) upload (OBS) integration into <project>:devel build test OBS <project>:devel (Jenkins) publish Repos rebase required Branching & version management tizen.org tzdev.org intranet OBS <project>:devel <project>:pre-release <project> 1) developers submit patches for review 2) preliminary automated verification: test packages are built in a sandbox and smoke tested 3) the submission is reviewed when accepted it requires rebase and resubmit for other changes queued for review 4) upload to OBS of the new version of the package(s) 5) the packages are published to the appropriate location 3 INTEL CONFIDENTIAL

4 Branching process 1. Developers submit changes to devel branch devel branch release-<rnumber> branch Master branch When the devel branch meets the criteria for rolling out a release, it is branched into a release-<rnumber> branch 3. The release-<rnumber> undergoes a stabilization phase during which all changes submitted to release-<number> branch have to be submitted also to devel. 4. Release candidates should be tagged as v<rnumber>rc<num> 5. Eventually the branch is tagged as v<rnumber> and a release is made. 6. Master Branch is reset to the release tag and doesn t receive any direct commit. 7. Bugfix branch is made for current release patch tag & release 8. Master Branch is reset once more to the latest bugfix release. 4 INTEL CONFIDENTIAL

5 Versioning Recommended versioning scheme for releases is major.minor[.bugfix] Release candidates should add -rc<num> suffix to release version, for example: 1.2-rc1 or rc1 In order to make package versions reflect versioning scheme and look similar for rpm and deb they should follow these recommendations: rpm.spec files: Release candidate: Version: 1.2, Release: 0.rc1.<CI_CNT>.<B_CNT> Final release: Version: 1.2, Release: 1.<CI_CNT>.<B_CNT> debian/changelog Release candidate: rc1 Final release: After creating release- branch package version in devel branch must be increased to ensure that version in <project>:devel repository is always higher than in <project>pre-release and <project> 5 INTEL CONFIDENTIAL

6 Advice of the Versioning for Services Packages Because we need not to release the services packages to end users currently, not like developer tools. And we need only to deploy them to the product infrastructure servers instead. So the versioning of these packages can be simpler: No rc versions No bugfixing versions Using <Major>.<Minor> versioning schema only, for every release, just increase the minor number. And for some important milestone release, increase the major number. 6 INTEL CONFIDENTIAL

7 Submitting changes Changes are submitted for review using git push <origin> <commit id>:refs/for/<target branch> Every submission triggers Jenkins job OTC-Tools-Tester-<project name>. This job does the following: Submits sources to OBS for the build to a project home:tester:tools-<project name>-<gerrit change number>.<gerrit patchset number>. OBS buld targets for the builds are taken from base project. For Tools releases it is Tools:Devel. Result packages uploaded to build repository at name>-<gerrit change number>.<gerrit patchset>/ Performs package installations in clean virtual environments for all target distributions. Optionally runs pylint and nosetests for python projects and produces violation, code coverage and test reports 7 INTEL CONFIDENTIAL

8 Accepting changes When change is accepted to the target branch(devel or release-<number>) in Gerrit OTC-Tools-Tester-<project name> is also triggered. For merged changes it does the same steps as on change submission, but upload sources to base OBS project. For devel branch it uploads sources to Tools:Devel For release-<number> branches it uploads sources to Tools:Pre-release This way system maintains consistency between code in devel and release branches and packages in correspondent OBS projects. It s recommended to configure Gerrit to allow only fast-forward merges. In this case changes have to be rebased on top of target branch before merging and pushed to Gerrit again. This will trigger OTC-Tools-Tester-<project name> job again and change will be tested again. It will reduce chances to get broken code to the target branches. 8 INTEL CONFIDENTIAL

9 Criteria for rejection of submissions the submission claims to fix a bug, but the bug is still reproducible with roughly the same frequency (if the frequency is significantly reduced we probably still want to accept it) the submission claims to implement a feature, but the feature verification fails so much that the feature is considered to be unusable (in practice the submission is not adding any value) the submission degrades the overall code quality (fails automated code analysis & verification / has problems with the implementation) the submission introduces major regressions (more on regression testing in separate foil) 9 INTEL CONFIDENTIAL

10 Regression testing Regression testing must be performed at least before releasing a tool. It should be done also periodically, during the development phase, preferably synchronised with integration of major changes. Specific test cases depend on the nature of each tool. Generic steps: take previous execution of the stable (production) release of the tool use the same data with the development release of the tool verify that the output is consistent and the only differences are due to bugfixes and planned features. 10 INTEL CONFIDENTIAL

11 Regression Testing in Staging Environment Because it s very critical for Tizen development process if we release and deploy the tools and services packages in product servers, we need to test them in staging environment before being deployed in product infrastructure servers. We d better host staging servers for all the three supporting domains: TZ, RSA and tizen.org, and testing the new packages in them accordingly. 11 INTEL CONFIDENTIAL

12 Smoke Testings for MIC Images For the regression testings for MIC, we need do simple verification for the outputs, which means the smoke testings for images. We need to confirm the output images can boot and work properly, with the same workable package repositories. We need to verify all the supported verticals: Mobile, PC, IVI, at least. 12 INTEL CONFIDENTIAL

13 Releasing Release stabilization is done in release-<rnumber> branches Jenkins job OTC-Tools-Tester-<project name> is taking care of synchronizing code in release-<rnumber> branches and packages in Tools:Pre-release Pre-release testers should install packages from name>-<gerrit change number>.<gerrit patchset>/ repos to verify changes under review and from to test accepted changes. When release is ready it s tagged with v<rnumber> tag and master branch is resetted to it. Packages from Tools:Pre-release are copied to Tools 13 INTEL CONFIDENTIAL

14 Bugfix releases (need to update it according current) Bugfix releases should be done in bugfix-<rnumber> branches. Release- <rnumber> branches can t be used for bugfix releases as they re mapped to Tools:Pre-release OBS project, which may contain packages scheduled for the next release. Jenkins job OTC-Tools-Tester-<project name> is taking care of synchronizing code in bugfix-<rnumber> branches and packages in Tools:Bugfix Bugfix testers install packages from name>- <gerrit change number>.<gerrit patchset>/ repos to verify changes under review and from to test accepted changes. When release is ready it s tagged with v<rnumber> tag and master branch is reset to it. Packages from Tools:Bugifx are copied to Tools 14 INTEL CONFIDENTIAL

15 Publishing releases and pre-releases Tools and Tools:Prerelease repositories are published to the Job is run by release managers manually. Job publishes repos to public location, extracts release notes from packages and updates.repo files with the proper urls. Similarly, Services and Services:prerelease repos will be published to Package maintainers should put RELEASE_NOTES file into packages using %doc RELEASE_NOTES in spec file. Release notes will be extracted by the publishing job and uploaded to the public site as RELEASE_NOTES.<package name> Structure of the public download site contains archive of all releases, pre-release and link to the latest release. 15 INTEL CONFIDENTIAL

16 Development and release flow: Jenkins Git branch OBS download repo testing patch failed pre-review testing pass reject peer review accept Devel branch branch Tools:Devel download.otctools.jf.intel.com/tools:/devel/ Functional testing hot fix peer review accept release-* branch Tools:pre-release download.tizen.org/tools/pre-release/ Full testing merge Deploy request master branch Tools download.tizen.org/tools/archive/ download.tizen.org/tools/latest-release/ Sanity testing Release announce handled by Jenkins automatically 16 INTEL CONFIDENTIAL

17 Repository for Pre-announcement Deployment According our process, we need to deploy the new packages in all domains product servers. Need to use the latest published repo under archive for the deployment. After confirming everything is ok, and before the official announcement, need to update the repo URL to latest-release. 17 INTEL CONFIDENTIAL

18

Continuous Deployment with Gerrit and Jenkins

Continuous Deployment with Gerrit and Jenkins Continuous Deployment with Gerrit and Jenkins R. Tyler Croy Lookout, Inc. http://mylookout.com/about/jobs Who is this guy? I work here 10/1/11 4 10/1/11 5 10/1/11 6 Brief overview of Continuous Deployment

More information

ci-management Release 1.0.0

ci-management Release 1.0.0 ci-management Release 1.0.0 Nov 13, 2018 CI Process 1 Summary 1 2 Finding Help on Hyperledger CI 3 3 Common Job Types 5 4 Verify Jobs 7 5 Merge Jobs 9 6 Release Jobs 11 7 Supported Architectures 13 8

More information

CAKEDC GIT WORKFLOW. CakeDC Git Workflow is a project development and release work flow which provides a

CAKEDC GIT WORKFLOW. CakeDC Git Workflow is a project development and release work flow which provides a CAKEDC GIT WORKFLOW CakeDC Git Workflow is a project development and release work flow which provides a development and release cycle based on key phases: Development: All active development is driven

More information

Tizen * IVI Hands-on Lab

Tizen * IVI Hands-on Lab Tizen * IVI Hands-on Lab Geoffroy VanCutsem, Technical Marketing Engineer, Intel Tosh Mitsue, Technical Marketing Engineer, Intel Tonny Tzeng, Technical Marketing Engineer, Intel SFTL004 Agenda Lab Objective

More information

Release for Lithium. George Zhao, Ed Warnicke, Colin Dixon, Mathieu Lemey, Robert Varga, An Ho.

Release for Lithium. George Zhao, Ed Warnicke, Colin Dixon, Mathieu Lemey, Robert Varga, An Ho. Release for Lithium George Zhao, Ed Warnicke, Colin Dixon, Mathieu Lemey, Robert Varga, An Ho Content Opendaylight release (Ed, George) Lessons learned ( Colin, Robert) Proposal for Lithium release Release

More information

Software configuration management

Software configuration management Software Engineering Theory Software configuration management Lena Buffoni/ Kristian Sandahl Department of Computer and Information Science 2017-03-27 2 Maintenance Requirements System Design (Architecture,

More information

Change-sets. Basavaraj Karadakal

Change-sets. Basavaraj Karadakal Change-sets Basavaraj Karadakal (bkrdkl@juniper.net) Development environment Component based development model. Developers spread across multiple sites. Over 800 components. Over 500 repos. Repos nested

More information

At a high level, the current OPNFV CI pipeline can be summarized as follows:

At a high level, the current OPNFV CI pipeline can be summarized as follows: Cross Community Continuous Integration (XCI) Empowers Innovation by Increasing Collaboration Between and Upstream Communities With XCI, regularly integrates the latest from each supported branch of select

More information

AEM Code Promotion and Content Synchronization Best Practices

AEM Code Promotion and Content Synchronization Best Practices AEM Code Promotion and Content Synchronization Best Practices Ian Reasor, Technical Architect, Adobe Partner Experience Introduction When considering the movement of content through environments in an

More information

FAQ Q: Where/in which branch do I create new code/modify existing code? A: Q: How do I commit new changes? A:

FAQ Q: Where/in which branch do I create new code/modify existing code? A: Q: How do I commit new changes? A: FAQ Q: Where/in which branch do I create new code/modify existing code? A: We strongly recommend only modifying the source code within the local master branch: Git Repository View Woped repository Branches

More information

One-click Solution for Tizen Image Creation Based on Jenkins Framework. Zhang, Qiang (Intel Open Source Technology Center)

One-click Solution for Tizen Image Creation Based on Jenkins Framework. Zhang, Qiang (Intel Open Source Technology Center) One-click Solution for Tizen Image Creation Based on Jenkins Framework Zhang, Qiang (Intel Open Source Technology Center) Agenda Tizen Build Workflow Overview Detailed steps Downloading Tizen Source Code

More information

Creating a Patch. Created by Carl Heymann on 2010 Sep 14 1

Creating a Patch. Created by Carl Heymann on 2010 Sep 14 1 Created by on 2010 Sep 14 1 1. Starting a Patch To create a patch, and get it through the review process and into a main branch of a project, you can follow the following steps: Clone the project if you

More information

ETOOMANYCATS. How we produce OpenStack

ETOOMANYCATS. How we produce OpenStack ETOOMANYCATS How we produce OpenStack OpenStack is large & growing 90+ code repositories.6+ MLOC (+30 %) Stats by OpenStack is complex 9 integrated projects Each project is a framework OpenStack is painful

More information

CS 390 Software Engineering Lecture 5 More Git

CS 390 Software Engineering Lecture 5 More Git CS 390 Software Engineering Lecture 5 More Git Reference: Scott Chacon and Ben Straub, Pro Git, published by Apress, available at https://git-scm.com/book/en/v2. Outline Finish local repository Remote

More information

Getting the Source Code

Getting the Source Code Getting the Source Code The CORD source code is available from our Gerrit system at gerrit.opencord.org. Setting up a Gerrit account and ssh access will also enable you to submit your own changes to CORD

More information

ONAP Developer Typical Setup 2017 July ONAP Virtual Developers Event

ONAP Developer Typical Setup 2017 July ONAP Virtual Developers Event ONAP Developer Typical Setup 2017 July 24-26 ONAP Virtual Developers Event Gary Wu Daniel Rose Victor Morales Getting Started with ONAP

More information

Seven Habits of Highly Effective Jenkins Users. Andrew Bayer Cloudera OSCON Java 2011

Seven Habits of Highly Effective Jenkins Users. Andrew Bayer Cloudera OSCON Java 2011 Seven Habits of Highly Effective Jenkins Users Andrew Bayer Cloudera OSCON Java 2011 Introduction Who am I? I'm a build guy, with a focus on Java builds. I've been using and working on Jenkins since early

More information

FPLLL. Contributing. Martin R. Albrecht 2017/07/06

FPLLL. Contributing. Martin R. Albrecht 2017/07/06 FPLLL Contributing Martin R. Albrecht 2017/07/06 Outline Communication Setup Reporting Bugs Topic Branches and Pull Requests How to Get your Pull Request Accepted Documentation Overview All contributions

More information

Tempest: Integrated OpenStack Testing

Tempest: Integrated OpenStack Testing Tempest: Integrated OpenStack Testing Matthew Treinish mtreinish@kortar.org May 12, 2014 OpenStack is Complicated Testing before Tempest Every project had its own unit tests Some projects had functional

More information

Git for Subversion users

Git for Subversion users Git for Subversion users Zend webinar, 23-02-2012 Stefan who? Stefan who? Freelancer: Ingewikkeld Stefan who? Freelancer: Ingewikkeld Symfony Community Manager Stefan who? Freelancer: Ingewikkeld Symfony

More information

contribution-guide.org Release

contribution-guide.org Release contribution-guide.org Release August 06, 2018 Contents 1 About 1 1.1 Sources.................................................. 1 2 Submitting bugs 3 2.1 Due diligence...............................................

More information

Git Workflows. Sylvain Bouveret, Grégory Mounié, Matthieu Moy

Git Workflows. Sylvain Bouveret, Grégory Mounié, Matthieu Moy s Sylvain Bouveret, Grégory Mounié, Matthieu Moy 2017 [first].[last]@imag.fr http://recherche.noiraudes.net/resources/git/git-workflow-slides.pdf 1 / 16 Goals of the presentation Global history: multiple

More information

SCAP Security Guide Questions / Answers. Contributor WorkShop Volume #2

SCAP Security Guide Questions / Answers. Contributor WorkShop Volume #2 SCAP Security Guide Questions / Answers Contributor WorkShop Volume #2 Ján Lieskovský January 2016 Agenda Introductory Notes Source Code / Repository Notes (Moved to Appendix for self-study) SCAP Security

More information

KTH Royal Institute of Technology SEMINAR 2-29 March Simone Stefani -

KTH Royal Institute of Technology SEMINAR 2-29 March Simone Stefani - KTH Royal Institute of Technology SEMINAR 2-29 March 2017 Simone Stefani - sstefani@kth.se WHAT IS THIS SEMINAR ABOUT Branching Merging and rebasing Git team workflows Pull requests and forks WHAT IS THIS

More information

Git and Gerrit Workflows. Enforcing Manual & Automated Review

Git and Gerrit Workflows. Enforcing Manual & Automated Review Git and Gerrit Workflows Enforcing Manual & Automated Review Agenda Branching and Workflow Review A Look at Gerrit The Gerrit Workflow Other Workflows Customizing Gerrit Workflow Branching and Workflow

More information

SCAP Security Guide Questions / Answers. Ján Lieskovský Contributor WorkShop November 2015

SCAP Security Guide Questions / Answers. Ján Lieskovský Contributor WorkShop November 2015 SCAP Security Guide Questions / Answers Ján Lieskovský Contributor WorkShop November 2015 Agenda Introductory Notes SSG Repository Structure Contributing To SSG Developer Workflow Introductory Notes SCAP

More information

How SAP is using Python to test its database SAP HANA Christoph Heer EuroPython July 11

How SAP is using Python to test its database SAP HANA Christoph Heer EuroPython July 11 How SAP is using Python to test its database SAP HANA Christoph Heer EuroPython 2017 - July 11 SAP HANA In-Memory database Column & Row store OLAP + OLTP Single host or distributed SQL C++ & Python 2 Python

More information

git-flow Documentation

git-flow Documentation git-flow Documentation Release 1.0 Johan Cwiklinski Jul 14, 2017 Contents 1 Presentation 3 1.1 Conventions............................................... 4 1.2 Pre-requisites...............................................

More information

SALOME Maintenance Procedure. Frédéric Pons (Open Cascade) Roman Nikolaev (Open Cascade)

SALOME Maintenance Procedure. Frédéric Pons (Open Cascade) Roman Nikolaev (Open Cascade) SALOME Maintenance Procedure Frédéric Pons (Open Cascade) Roman Nikolaev (Open Cascade) Back Office Back Office Organization Back Office Tasks Continuous integration Production and Qualification of Released

More information

TM DevOps Use Case. 2017TechMinfy All Rights Reserved

TM DevOps Use Case. 2017TechMinfy All Rights Reserved Document Details Use Case Name TMDevOps Use Case04 First Draft 10 th Dec 2017 Author Reviewed By Amrendra Kumar Pradeep Narayanaswamy Contents Scope... 4 About Customer... 4 Pre-Conditions/Trigger... 4

More information

Git. all meaningful operations can be expressed in terms of the rebase command. -Linus Torvalds, 2015

Git. all meaningful operations can be expressed in terms of the rebase command. -Linus Torvalds, 2015 Git all meaningful operations can be expressed in terms of the rebase command -Linus Torvalds, 2015 a talk by alum Ross Schlaikjer for the GNU/Linux Users Group Sound familiar? add commit diff init clone

More information

Version Control for PL/SQL

Version Control for PL/SQL Version Control for PL/SQL What is the problem? How did we solve it? Implementation Strategies Demo!! Customer Spotlight Success Story: (In other words, this really works. :-) ) Rhenus Logistics, leading

More information

Team Up: Contributing to the Tizen Platform. Narasimha Swamy Sanjay NM

Team Up: Contributing to the Tizen Platform. Narasimha Swamy Sanjay NM Team Up: Contributing to the Tizen Platform Narasimha Swamy Sanjay NM YOUR Contributions MATTER to the SUCCESS of Tizen platform Agenda About Tizen OSS Ways of Contribution Tizen 3.0 Governance Model Tools,

More information

QA and Testing. Suchitra Vemuri, ONF Karthick Ramanarayanan, Ciena November 8th, 2017

QA and Testing. Suchitra Vemuri, ONF Karthick Ramanarayanan, Ciena November 8th, 2017 QA and Testing Suchitra Vemuri, ONF Karthick Ramanarayanan, Ciena November 8th, 2017 1 Introduction Framework Overview Test Suites QA Jenkins Setup/Run Tests Collaborations Contribution Opportunities QA

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Gerrit

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Gerrit Gerrit About the Tutorial Gerrit is a web-based code review tool, which is integrated with Git and built on top of Git version control system (helps developers to work together and maintain the history

More information

Python Project Example Documentation

Python Project Example Documentation Python Project Example Documentation Release 0.1.0 Neil Stoddard Mar 22, 2017 Contents 1 Neilvana Example 3 1.1 Features.................................................. 3 1.2 Credits..................................................

More information

Infrastructure-as-Code and CI Infrastructure at Open Stack A look at one of the largest CI systems and system administration

Infrastructure-as-Code and CI Infrastructure at Open Stack A look at one of the largest CI systems and system administration Infrastructure-as-Code and CI Infrastructure at Open Stack A look at one of the largest CI systems and system administration Andreas Jaeger Product Manager SUSE aj@suse.com OpenStack Open source software

More information

Jenkins: A complete solution. From Continuous Integration to Continuous Delivery For HSBC

Jenkins: A complete solution. From Continuous Integration to Continuous Delivery For HSBC Jenkins: A complete solution From Integration to Delivery For HSBC Rajesh Kumar DevOps Architect @RajeshKumarIN www.rajeshkumar.xyz Agenda Why Jenkins? Introduction and some facts about Jenkins Supported

More information

OpenStack Infrastructure tools

OpenStack Infrastructure tools Coordination and OpenStack Infrastructure tools you will want to borrow Thierry Carrez Carrez (@tcarrez) Thierry (@tcarrez) Release Manager, OpenStack Crazy loads every day 000 patchsets are proposed

More information

Managing build infrastructure of a Debian derivative

Managing build infrastructure of a Debian derivative Managing build infrastructure of a Debian derivative Andrej Shadura 4 February 2018 Presentation Outline Who am I Enter Apertis Build infrastructure Packaging workflows Image builds Andrej Shadura contributing

More information

The Automotive Grade Linux Build Service. ALS Tokyo '14, Jan-Simon Möller

The Automotive Grade Linux Build Service. ALS Tokyo '14, Jan-Simon Möller The Automotive Grade Linux Build Service ALS Tokyo '14, Jan-Simon Möller The Automotive Grade Linux (AGL) initiative... is about improving open source components for automotive use cases using a common

More information

Organising benchmarking LLVM-based compiler: Arm experience

Organising benchmarking LLVM-based compiler: Arm experience Organising benchmarking LLVM-based compiler: Arm experience Evgeny Astigeevich LLVM Dev Meeting April 2018 2018 Arm Limited Terminology Upstream: everything on llvm.org side. Downstream: everything on

More information

Kernel maintainership: an oral tradition

Kernel maintainership: an oral tradition Embedded Linux Conference Europe 2015 Kernel maintainership: an oral tradition Gregory CLEMENT Bootlin gregory.clement@bootlin.com (Image credit: Andrew Cheal under license CC BY-ND 2.0) - Kernel, drivers

More information

TDF Infra Overview. from developers' perspective

TDF Infra Overview. from developers' perspective Introduction Christian Lohmaier AKA cloph on irc/elsewhere part of the project since the very beginning (infra side) since a few years employed by TDF initially part-time as infrastructure administrator

More information

Linux Kernel Subsystem Maintenance. Linus Walleij, Lund Linux Conference

Linux Kernel Subsystem Maintenance. Linus Walleij, Lund Linux Conference Linux Kernel Subsystem Maintenance Linus Walleij, Lund Linux Conference A Day in the Life of a Subsystem Maintainer - Why are we doing it? - How did we come to be subsystem maintainers? - What do we actually

More information

The Old World. Have you ever had to collaborate on a project by

The Old World. Have you ever had to collaborate on a project by What the Git? The Old World Have you ever had to collaborate on a project by Shuttling a USB drive back and forth Using Dropbox E-mailing your document around Have you ever accidentally deleted someone

More information

#jenkinsconf. Managing jenkins with multiple components project. Jenkins User Conference Israel. Presenter Name Ohad Basan

#jenkinsconf. Managing jenkins with multiple components project. Jenkins User Conference Israel. Presenter Name Ohad Basan Jenkins User Conference Israel #jenkinsconf Managing jenkins with multiple components project Presenter Name Ohad Basan Presenter Company Www.redhat.com July 16, 2014 #jenkinsconf Who am I Ohad Basan CI

More information

ThinkPalm s BreakThrough DevOps Capabilities ThinkPalm

ThinkPalm s BreakThrough DevOps Capabilities ThinkPalm ThinkPalm s BreakThrough DevOps Capabilities ThinkPalm Dev Ops Business Planning Collaborative Development Customer Feedback & Optimization Testing Monitoring Release and Deployment STANDARDS OPERATE DEPLOY

More information

Version Control for PL/SQL

Version Control for PL/SQL Version Control for PL/SQL Customer Spotlight Success Story: Rhenus Logistics, leading logistics service company from Germany, uses this solution. Manages over 20,000 packages Packages are spread over

More information

chatterbot-weather Documentation

chatterbot-weather Documentation chatterbot-weather Documentation Release 0.1.1 Gunther Cox Nov 23, 2018 Contents 1 chatterbot-weather 3 1.1 Installation................................................ 3 1.2 Example.................................................

More information

About SJTUG. SJTU *nix User Group SJTU Joyful Techie User Group

About SJTUG. SJTU *nix User Group SJTU Joyful Techie User Group About SJTUG SJTU *nix User Group SJTU Joyful Techie User Group Homepage - https://sjtug.org/ SJTUG Mirrors - https://mirrors.sjtug.sjtu.edu.cn/ GitHub - https://github.com/sjtug Git Basic Tutorial Zhou

More information

Creating a profile from Tizen:Common. Stéphane Desneux Senior Software Engineer Eurogiciel

Creating a profile from Tizen:Common. Stéphane Desneux Senior Software Engineer Eurogiciel Creating a profile from Tizen:Common Stéphane Desneux Senior Software Engineer Eurogiciel Eurogiciel IT Services Company Open source development and integration:

More information

What s New in Gerrit 2.14 Gerrit User Summit London 2017

What s New in Gerrit 2.14 Gerrit User Summit London 2017 What s New in Gerrit 2.14 Gerrit User Summit London 2017 David Pursehouse CollabNet Summary of New Features Assignee field for changes Deletable changes Improved reviewer suggestion Email: new templates,

More information

Ingegneria del Software Corso di Laurea in Informatica per il Management (D)VCS. Davide Rossi Dipartimento di Informatica Università di Bologna

Ingegneria del Software Corso di Laurea in Informatica per il Management (D)VCS. Davide Rossi Dipartimento di Informatica Università di Bologna Ingegneria del Software Corso di Laurea in Informatica per il Management (D)VCS Davide Rossi Dipartimento di Informatica Università di Bologna Rationale for version control Control the revisions of artifacts

More information

Belle II - Git migration

Belle II - Git migration Belle II - Git migration Why git? Stash GIT service managed by DESY Powerful branching and merging capabilities Resolution of (JIRA) issues directly be map to branches and commits Feature freeze in pre-release

More information

Software Development I

Software Development I 6.148 Software Development I Two things How to write code for web apps. How to collaborate and keep track of your work. A text editor A text editor A text editor Anything that you re used to using Even

More information

dgit Use the Debian archive as a git remote Debconf 15, Heidelberg

dgit Use the Debian archive as a git remote Debconf 15, Heidelberg dgit Use the Debian archive as a git remote Ian Jackson Debconf 15, Heidelberg ijackson@chiark.greenend.org.uk ian.jackson@eu.citrix.com dgit for NMUers, downstreams, users, etc. dgit for the Debian package

More information

nacelle Documentation

nacelle Documentation nacelle Documentation Release 0.4.1 Patrick Carey August 16, 2014 Contents 1 Standing on the shoulders of giants 3 2 Contents 5 2.1 Getting Started.............................................. 5 2.2

More information

Version Control: Gitting Started

Version Control: Gitting Started ting Started Cai Li October 2014 What is Version Control? Version control is a system that records changes to a file or set of files over time so that you can recall specific versions later. Local Version

More information

Version Control for the 2- Pizza Team: Merge Conflicts (ELLS 9.5) Armando Fox

Version Control for the 2- Pizza Team: Merge Conflicts (ELLS 9.5) Armando Fox Version Control for the 2- Pizza Team: Merge Conflicts (ELLS 9.5) Armando Fox 2012 Armando Fox & David Patterson Licensed under Creative Commons Attribution- NonCommercial-ShareAlike 3.0 Unported License

More information

Building Tizen Development Environment

Building Tizen Development Environment Building Tizen Development Environment Minsoo Ryu Real-Time Computing and Communications Lab. Hanyang University msryu@hanyang.ac.kr Tizen 2.3 Development Environment Target hardware device Tizen Reference

More information

Git. Ľubomír Prda. IT4Innovations.

Git. Ľubomír Prda. IT4Innovations. Git Ľubomír Prda IT4Innovations lubomir.prda@vsb.cz support@it4i.cz VCS Version Control System Versioning - creation and management of multiple releases of a product, all of which have the same general

More information

Introduction, Instructions and Conventions

Introduction, Instructions and Conventions Encodo Systems AG Garnmarkt 1 8400 Winterthur Telephone +41 52 511 80 80 www.encodo.com Encodo GIT handbook Introduction, Instructions and Conventions Abstract This document is an introduction to using

More information

Version Control. Second level Third level Fourth level Fifth level. - Software Development Project. January 11, 2017

Version Control. Second level Third level Fourth level Fifth level. - Software Development Project. January 11, 2017 Version Control Click to edit Master EECS text 2311 styles - Software Development Project Second level Third level Fourth level Fifth level January 11, 2017 1 Scenario 1 You finished the assignment at

More information

Tools for Distributed, Open Source Systems Administration

Tools for Distributed, Open Source Systems Administration Tools for Distributed, Open Source Systems Administration LISA15 Friday, November 13, 2015 Elizabeth K. Joseph lyz@princessleia.com @pleia2 Elizabeth K. Joseph OpenStack Infrastructure Team systems administrator,

More information

CSC 2700: Scientific Computing

CSC 2700: Scientific Computing CSC 2700: Scientific Computing Record and share your work: revision control systems Dr Frank Löffler Center for Computation and Technology Louisiana State University, Baton Rouge, LA Feb 13 2014 Overview

More information

sainsmart Documentation

sainsmart Documentation sainsmart Documentation Release 0.3.1 Victor Yap Jun 21, 2017 Contents 1 sainsmart 3 1.1 Install................................................... 3 1.2 Usage...................................................

More information

TPS Documentation. Release Thomas Roten

TPS Documentation. Release Thomas Roten TPS Documentation Release 0.1.0 Thomas Roten Sep 27, 2017 Contents 1 TPS: TargetProcess in Python! 3 2 Installation 5 3 Contributing 7 3.1 Types of Contributions..........................................

More information

February 2 nd Jean Parpaillon

February 2 nd Jean Parpaillon Using GIT with Kerrighed project Kerrighed Summit '07 February 2 nd 2007 Jean Parpaillon Table of contents Kerrighed SCM Subversion GIT GIT with Kerrighed References 2 Kerrighed

More information

The Rock branching strategy is based on the Git Branching Model documented by Vincent Driessen.

The Rock branching strategy is based on the Git Branching Model documented by Vincent Driessen. Overview The Rock branching strategy is based on the Git Branching Model documented by Vincent Driessen. Branches Master The master branch should always reflect the latest production-ready state, and should

More information

Aircrack-ng python bindings Documentation

Aircrack-ng python bindings Documentation Aircrack-ng python bindings Documentation Release 0.1.1 David Francos Cuartero January 20, 2016 Contents 1 Aircrack-ng python bindings 3 1.1 Features..................................................

More information

Your Engineering Excellency

Your Engineering Excellency Your Engineering Excellency With hundreds of projects in dozens of industries, EPAM Systems can boast expertise and excellence in lots of different technologies. E-commerce, Big Data, content management,

More information

RobinHood Project Status

RobinHood Project Status FROM RESEARCH TO INDUSTRY RobinHood Project Status Robinhood User Group 2015 Thomas Leibovici 9/18/15 SEPTEMBER, 21 st 2015 Project history... 1999: simple purge tool for HPC

More information

Roman Numeral Converter Documentation

Roman Numeral Converter Documentation Roman Numeral Converter Documentation Release 0.1.0 Adrian Cruz October 07, 2014 Contents 1 Roman Numeral Converter 3 1.1 Features.................................................. 3 2 Installation 5

More information

Best Practice for Tizen Platform from Code to Device. Zhang, Qiang Chen, Gui (Intel Open Source Technology Center)

Best Practice for Tizen Platform from Code to Device. Zhang, Qiang Chen, Gui (Intel Open Source Technology Center) Best Practice for Tizen Platform from Code to Device Zhang, Qiang Chen, Gui (Intel Open Source Technology Center) Agenda Tizen Development Tools Workflow Overview Downloading Tizen source code Building

More information

Jinkun Jang Samsung Electronics

Jinkun Jang Samsung Electronics Jinkun Jang Samsung Electronics 1 Contents DevOps What is DevOps? What are Goals of DevOps? How can we achieve those goals? Tizen Infrastructure How about Tizen Infrastructure? Can Tizen Infrastructure

More information

Releasing and Testing Free Opensource Graphics Drivers: the case of Mesa3D

Releasing and Testing Free Opensource Graphics Drivers: the case of Mesa3D Releasing and Testing Free Opensource Graphics Drivers: the case of Mesa3D Emil Velikov (emil.velikov@collabora.com) Juan A. Suárez (jasuarez@igalia.com) with PierreLoup Griffais (pgriffais@valvesoftware.com)

More information

JenkinsPipelineUnit. Test your Continuous Delivery Pipeline. Ozan Gunalp - Emmanuel Quincerot

JenkinsPipelineUnit. Test your Continuous Delivery Pipeline. Ozan Gunalp - Emmanuel Quincerot JenkinsPipelineUnit Test your Continuous Delivery Pipeline Ozan Gunalp - Emmanuel Quincerot Who we are Ozan Günalp Emmanuel Quincerot Developer at LesFurets Developer at LesFurets PhD in Computer Science

More information

opensuse Packaging for the osmocom stack Martin Hauke

opensuse Packaging for the osmocom stack Martin Hauke opensuse Packaging for the osmocom stack Martin Hauke mardnh@gmx.de 21.04.2018 Intro Why opensuse? It s my favourite Linux distribution (open)suse has great tools and infrastructure OBS, OpenQA, KIWI opensuse

More information

Keeping up with LTS Linux Kernel Functional Testing on Devices

Keeping up with LTS Linux Kernel Functional Testing on Devices Keeping up with LTS Linux Kernel Functional Testing on Devices Tom Gall Director, Linaro Mobile Group Who is Linaro? Linaro is leading software collaboration in the ARM ecosystem Instead of duplicating

More information

google-search Documentation

google-search Documentation google-search Documentation Release 1.0.0 Anthony Hseb May 08, 2017 Contents 1 google-search 3 1.1 Features.................................................. 3 1.2 Credits..................................................

More information

Continuous Delivery of your infrastructure. Christophe

Continuous Delivery of your infrastructure. Christophe Continuous Delivery of your infrastructure Christophe Vanlancker @Carroarmato0 Christophe Vanlancker Internal operations and consulting Mentor Kris couldn t make it so I s/kris/christophe/g Todays Goals

More information

Frédéric Crozat SUSE Linux Enterprise Release Manager

Frédéric Crozat SUSE Linux Enterprise Release Manager Distribution build / delivery styles, one style to rule them all? Is rolling release the answer for everything? Or Service Pack? SUSE and opensuse experience Frédéric Crozat SUSE Linux

More information

Code Review for DevOps

Code Review for DevOps Code Review for DevOps FOSSASIA 2016 Saturday, 19 March 2016 Elizabeth K. Joseph Hewlett Packard Enterprise lyz@princessleia.com @pleia2 Elizabeth K. Joseph OpenStack Infrastructure Team DevOps Engineer,

More information

Version Control. So#ware Quality Quality Audit and Cer2fica2on. Master in Computer Engineering. Roberto García

Version Control. So#ware Quality Quality Audit and Cer2fica2on. Master in Computer Engineering. Roberto García Version Control So#ware Quality Quality Audit and Cer2fica2on Master in Computer Engineering Roberto García (rgarcia@diei.udl.cat) Introduc2on Change- control procedures. Avoid uncontrolled changes, destabilize

More information

MySQL Development Cycle

MySQL Development Cycle Abstract This document explains the MySQL Server development cycle. The purpose of the document is to facilitate community involvement, for example by providing feedback on pre-releases and making contributions

More information

vpp-firstcut Documentation

vpp-firstcut Documentation vpp-firstcut Documentation Release 0.1 John DeNisco Jun 07, 2018 Contents 1 Concepts 3 2 Setup 5 2.1 Installing VPP Binaries from Packages................................. 5 3 Tasks 11 3.1 Writing VPP

More information

I2C LCD Documentation

I2C LCD Documentation I2C LCD Documentation Release 0.1.0 Peter Landoll Sep 04, 2017 Contents 1 I2C LCD 3 1.1 Features.................................................. 3 1.2 Credits..................................................

More information

Versioning with git. Moritz August Git/Bash/Python-Course for MPE. Moritz August Versioning with Git

Versioning with git. Moritz August Git/Bash/Python-Course for MPE. Moritz August Versioning with Git Versioning with git Moritz August 13.03.2017 Git/Bash/Python-Course for MPE 1 Agenda What s git and why is it good? The general concept of git It s a graph! What is a commit? The different levels Remote

More information

New Contributor Tutorial and Best Practices

New Contributor Tutorial and Best Practices New Contributor Tutorial and Best Practices Vicențiu Ciorbaru Software Engineer @ MariaDB Foundation * 2018 MariaDB Foundation * Goal of this session Most attendees here are highly experienced devs Let's

More information

The OpenStack Project Continuous Integration System. Elizabeth K.

The OpenStack Project Continuous Integration System. Elizabeth K. The OpenStack Project Continuous Integration System Elizabeth K. Joseph @pleia2 Elizabeth K. Joseph Core/root member of the OpenStack Infrastructure Team Author of Common OpenStack Deployments (along with

More information

Continuous Integration / Continuous Testing

Continuous Integration / Continuous Testing Bitte decken Sie die schraffierte Fläche mit einem Bild ab. Please cover the shaded area with a picture. (24,4 x 7,6 cm) Continuous Integration / Continuous Testing IIC What s SW Integration? Integration

More information

exo Product Maintenance Program

exo Product Maintenance Program exo Product Maintenance Program Overview exo s subscription customers benefit from the exo product maintenance program, according to the coverage specified in their subscription contract. The program provides

More information

MOOSE-Based Application Development on GitLab

MOOSE-Based Application Development on GitLab MOOSE-Based Application Development on GitLab MOOSE Team Idaho National Laboratory February 22, 2016 Introduction The intended audience for this talk is developers of INL-hosted, MOOSE-based applications.

More information

Version Control Systems

Version Control Systems Nothing to see here. Everything is under control! September 16, 2015 Change tracking File moving Teamwork Undo! Undo! UNDO!!! What strategies do you use for tracking changes to files? Change tracking File

More information

Data for LibreOffice developerss

Data for LibreOffice developerss s Markus Mohrhard 2016-04-29 1 Topic Huge project A lot of data to make life of a developer easier Where do I find these information? How do I use them? Limitations Ideas 2 Current data 3 Devcentral Devcentral.libreoffice.org

More information

Release Ralph Offinger

Release Ralph Offinger nagios c heck p aloaltodocumentation Release 0.3.2 Ralph Offinger May 30, 2017 Contents 1 nagios_check_paloalto: a Nagios/Icinga Plugin 3 1.1 Documentation..............................................

More information

Super Charge Your Continuous Integration Deployments. Nikola Gotsev April 26, 2016

Super Charge Your Continuous Integration Deployments. Nikola Gotsev April 26, 2016 Super Charge Your Continuous Integration Deployments Nikola Gotsev April 26, 2016 What is Continuous Integration? Wasn`t that the same as Continuous Deployment? Or was it related to the source control

More information

Git Basi, workflow e concetti avanzati (pt2)

Git Basi, workflow e concetti avanzati (pt2) Git Basi, workflow e concetti avanzati (pt2) Andrea Fornaia, Ph.D. Department of Mathema.cs and Computer Science University of Catania Viale A.Doria, 6-95125 Catania Italy fornaia@dmi.unict.it hfp://www.cs.unict.it/~fornaia/

More information

About HP Quality Center Upgrade... 2 Introduction... 2 Audience... 2

About HP Quality Center Upgrade... 2 Introduction... 2 Audience... 2 HP Quality Center Upgrade Best Practices White paper Table of contents About HP Quality Center Upgrade... 2 Introduction... 2 Audience... 2 Defining... 3 Determine the need for an HP Quality Center Upgrade...

More information