Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Continuous Delivery in Motion
Search
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
Avinash Chugh
May 07, 2016
Programming
0
130
Continuous Delivery in Motion
The deck we used for the XConf Jaipur 2016.
Avinash Chugh
May 07, 2016
Tweet
Share
More Decks by Avinash Chugh
See All by Avinash Chugh
Platform Thinking - Bringing Agility to Business
avinashchugh
0
32
Embracing the changing technology paradigms
avinashchugh
0
39
product thinking is problem solving.
avinashchugh
0
150
The anatomy of a platform.
avinashchugh
0
110
Evolutionary Enterprise Architectures
avinashchugh
0
62
seven tips to effective writing
avinashchugh
0
230
clean code: four rules of simple design
avinashchugh
5
1.2k
micro services, yotta benefits
avinashchugh
1
200
managing build artifacts with nexus
avinashchugh
0
93
Other Decks in Programming
See All in Programming
AI時代でも変わらない技術コミュニティの力~10年続く“ゆるい”つながりが生み出す価値
n_takehata
2
720
Ruby x Terminal
a_matsuda
7
590
エンジニアの「手元の自動化」を加速するn8n 2026.02.27
symy2co
0
140
コーディングルールの鮮度を保ちたい / keep-fresh-go-internal-conventions
handlename
0
200
Unity6.3 AudioUpdate
cova8bitdots
0
130
Claude Code Skill入門
mayahoney
0
290
社内規程RAGの精度を73.3% → 100%に改善した話
oharu121
13
8k
最初からAWS CDKで技術検証してもいいんじゃない?
akihisaikeda
4
140
Go 1.26でのsliceのメモリアロケーション最適化 / Go 1.26 リリースパーティ #go126party
mazrean
1
380
Agent Skills Workshop - AIへの頼み方を仕組み化する
gotalab555
15
8.6k
エラーログのマスキングの仕組みづくりに役立ったASTの話
kumoichi
0
190
受け入れテスト駆動開発(ATDD)×AI駆動開発 AI時代のATDDの取り組み方を考える
kztakasaki
2
560
Featured
See All Featured
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.6k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
17k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
508
140k
技術選定の審美眼(2025年版) / Understanding the Spiral of Technologies 2025 edition
twada
PRO
118
110k
Fireside Chat
paigeccino
42
3.8k
Visualization
eitanlees
150
17k
Public Speaking Without Barfing On Your Shoes - THAT 2023
reverentgeek
1
330
Winning Ecommerce Organic Search in an AI Era - #searchnstuff2025
aleyda
1
1.9k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.4k
Building Applications with DynamoDB
mza
96
7k
Primal Persuasion: How to Engage the Brain for Learning That Lasts
tmiket
0
290
What's in a price? How to price your products and services
michaelherold
247
13k
Transcript
CONTINUOUS DELIVERY IN MOTION Avinash Chugh & Praveer Gupta 1
AGENDA 2 ▪The business case ▪A typical delivery pipeline ▪Putting
it into practice
THE BUSINESS CASE 3
WHAT DOES IT TAKE FOR A BUSINESS TO SUCCEED 4
Faster time to market Being responsive to customer needs
TRUE AGILITY MEANS 5 Collaboration Rapid response to change Working
software
CONTINUOUS DELIVERY 6 Frequent Releases Reliable Releases
PERILS OF LONG RELEASE CYCLES 7 1 1 2 1
2 3 4 1 2 3 Release Time Unreleased changes = risk Risk Value
BENEFITS OF FREQUENT RELEASES 8 1 2 3 4 1
1 2 1 2 3 Release Release Release Released changes = value
9 HOW CAN I FREQUENTLY RELEASE SOFTWARE HOW CAN I
BUILD SOFTWARE INCREMENTALLY HOW CAN I CONFIDENTLY RELEASE NEW SOFTWARE
10 Release Iteration Story Commit MODERN DEVELOPMENT CYCLE
11 Series of commits Release MANY COMMITS FORMING A RELEASE
Release candidates Series of commits WHAT IF EACH COMMIT WERE
A RELEASE Releases on demand
DELIVERY PIPELINE 13
A DELIVERY PIPELINE 14 App Service Library
2. CI server checks out & compiles code 4. Code
analysis 5. Create & publish artifact 15 3. Unit tests 1. Developer commits code to SCM Commit Stage COMMIT STAGE
16 2. Retrieve artifact 4. Run smoke tests 5. Run
acceptance tests 3. Deploy artifact 1. Prepare environment Acceptance Stage ACCEPTANCE STAGE
17 2. Retrieve artifacts 4. Run smoke tests 3. Deploy
artifacts 1. Prepare environment Deploy Stage DEPLOY STAGE One-click deployments
1 2 3 4 5 6 A LOT HAPPENS BEFORE
A RELEASE 18 Regression testing User Acceptance Integration Infrastructure Setup Performance testing Security Audit
Increasing confidence Faster feedback SHORTER RELEASE CYCLE 19 Commit Live
TESTING PYRAMID 20 End to end – business facing Localized
– technology facing ▪Slower feedback ▪Higher cost of change
DEVELOPMENT IN SILOS 21 Merge Merge Trunk Anti-pattern: Feature branching
LOW REUSE AND MERGE ISSUES 22 Merge Merge Trunk 2
2 3 4 2 3 1 1 1 1 4 5 2 3 1 2 1 3 2 1 1 4 3 2 1 4 3 2 1 4 5 2 3
COLLABORATIVE DEVELOPMENT 23 Trunk 1 2 3 4 5 1
1 3 4 2 4 5 2 1 3 2 4 3 Key principle: Continuous Integration
CONTINUOUS INTEGRATION PRACTICES 24 ▪ One component, one repository ▪
Everyone commits to trunk every day ▪ No branches
25 CD Tools IAAS PAAS Mobile Systems Delivering software CONTINUOUS
DELIVERY IN DIVERSE CONTEXTS
CD IN PRACTICE 26
MANAGING LARGE CODE BASES 27 ▪ Dependency management ▪ Service
Oriented Architectures ▪ Microservices
RELEASING INCOMPLETE WORK 28 [featureToggles] wobblyFoobars: true flightyForkHandles: false Config
File <toggle name=wobblyFoobars> ... various UI elements </toggle> some.jsp forkHandle = (featureConfig.isOn(‘flightlyForkHandles)) ? new FlightyForkHander(aCandle) : new ForkHandler(aCandle) other.java Pattern: Feature toggles
GUIDELINES FOR FEATURE TOGGLES 29 ▪ Use them only when
needed ▪ Prefer feature hiding ▪ Remove toggles once feature is live
MAKING BIG CHANGES 30 Application New Library Library Pattern: Branch
by abstraction
31 Interface implements Application New Library Library MAKING BIG CHANGES
32 Interface implements Application New Library Library MAKING BIG CHANGES
33 Interface implements Application New Library Library MAKING BIG CHANGES
34 Interface implements Application New Library MAKING BIG CHANGES
35 Application New Library MAKING BIG CHANGES
WRAPPING UP 36
WHAT WE COVERED 37 ▪Fast feedback, and short release cycles
▪Keeping WIPs to a minimum ▪If it’s hard, do it more often ▪Trunk-based development ▪The need for automation ▪Feature toggles ▪Branch by abstraction
SO MUCH MORE TO EXPLORE 38 ▪Deployment strategies ▪Automated deployments
▪Configuration management ▪Infrastructure provisioning ▪Cloud deployments ▪Virtualization ▪Tooling support
39 ADDITIONAL READING
@thoughtworks THANK YOU