Building a Continuous Integration Pipeline using VSTS

Slides:



Advertisements
Similar presentations
1/27/2018 5:13 AM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Advertisements

4/15/2018 6:21 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
4/24/ :07 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Microsoft /23/2018 8:20 PM THR3038 Implement dev and test scenarios using Azure and Visual Studio Team Services Alex Mang Azure MVP © 2016 Microsoft.
Microsoft Virtual Academy
Jeff Hollan / Kevin Lam Program Manager / Principal Program Manager- Microsoft Bringing Logic Apps into DevOps with Visual Studio and monitoring.
Building a Continuous Delivery Pipeline for ASP.NET Core Apps
Jenkins and Azure OPEN322 Michael Friedrich.
7/19/2018 9:40 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Microsoft Virtual Academy
Microsoft Connect /26/2018 1:00 AM
Azure API Management Jothi Prakash A
9/13/2018 1:41 AM Deep dive into implementing a Visual Studio Team Services DevOps pipeline - THR4004 Jeffrey Palermo Developer & CEO, Clear Measure, Inc.
Microsoft Virtual Academy
Automate all things! Microsoft Azure continuous deployment
Release Management with Visual Studio Team Services
Microsoft Connect /7/ :48 PM
Git Version Control for Everyone
Confidence at speed: Visual Studio 2017 and your CI pipeline
Service Fabric Patterns & Best Practices
DevOps Fundamentals Configuration Management
Continuous Delivery for Microsoft Azure
What’s new in Visual Studio in 2015?
Microsoft Connect /16/2018 4:53 PM
Microsoft Virtual Academy
Database Continuous Integration and Deployment with Visual Studio SQL Server Data Tools in < 10 minutes Eric Kang Program Manager.
Microsoft Ignite /28/2018 8:58 AM
Release Management with Visual Studio Team Services
TFS from on-prem to the cloud with Azure DevOps Services
Continuous Integration & Deployment to Azure Container Service
TechEd /3/2018 8:11 AM © 2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks.
Johan Hedberg Microsoft Azure MVP
Application Insights Diagnostics Preview
DevOps Fundamentals Automated Testing
Learn. Imagine. Build. .NET Conf
Web Development in Visual Studio 2017
Johan Hedberg Consultant & XLENT | Cloud and Integration specialist | Microsoft MVP Using VSTS to deploy BizTalk Server solutions, what you.
12/9/ :15 AM © 2007 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered.
Introduction to Building Applications with Windows Azure
12/26/2018 1:44 AM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Release Management with Visual Studio Team Services
Jeff Hollan / Kevin Lam Program Manager / Principal Program Manager- Microsoft Bringing Logic Apps into DevOps with Visual Studio and monitoring.
Microsoft Connect /2/2019 9:06 AM
Microsoft Build /2/2019 4:12 PM © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY,
Microsoft Connect /17/2019 9:55 PM
Welcome to Azure Notebooks
Microsoft Connect /16/ :45 PM
2/22/2019 1:12 PM The Journey To Provision and Manage a Thousand Machine Cluster for Machine Learning Neil Sant Gat © Microsoft Corporation. All rights.
Microsoft Connect /22/2019 9:54 PM
Microsoft Connect /23/ :38 AM
TechEd /7/2019 1:14 AM © 2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks.
Microsoft Build /8/2019 6:29 AM © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY,
From Development to Production: Optimizing for Continuous Delivery
4/11/2019 6:29 AM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
4/12/2019 5:27 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
4/20/ :00 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Build /19/2019 © 2015 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION.
Microsoft Virtual Academy
Under the hood: Installation and updates for Metro style apps
5/6/2019 7:40 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS.
5/25/2019 2:40 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Inside the Windows 8 driver developer workflow
5/30/2019 1:59 PM © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION.
Microsoft Connect /29/2019 1:53 AM
Welcome to Architect Insight 2010
02 | Release Management Architecture
Jamie Cool Program Manager Microsoft
Miao Jiang API Management: deep dive - Part 1
Microsoft Connect /14/ :11 AM
DevOps for Desktop Apps
Presentation transcript:

Building a Continuous Integration Pipeline using VSTS 9/13/2018 6:30 PM Building a Continuous Integration Pipeline using VSTS Sunny Sharma Microsoft MVP, Senior Software Engineer © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Agenda: Discuss CI/CD Create Build Pipeline Create a Release Pipeline Microsoft Build 2017 9/13/2018 6:30 PM Agenda: Discuss CI/CD Create Build Pipeline Create a Release Pipeline Build Pipeline VSTS Build Agents Third Party Build tools Release Pipeline Hands-on demo © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Microsoft Build 2017 9/13/2018 6:30 PM Build Pipeline VSTS Build Agents Third Party Build tools Release Pipeline Hands-on demo © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Continuous Integration (CI) Microsoft Build 2017 9/13/2018 6:30 PM Continuous Integration (CI) the practice of constantly merging development work with a Master codebase… so that you can test changes, and test that those changes work with other changes. © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Continuous Delivery (CD) Microsoft Build 2017 9/13/2018 6:30 PM Continuous Delivery (CD) the continual delivery of code to an environment once the developer feels the code is ready to deploy - this could be UAT, staging or production. © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Continuous Deployment (CD) Microsoft Build 2017 9/13/2018 6:30 PM Continuous Deployment (CD) Continuous Delivery – with Auto-Approval © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Continuous Integration Services Microsoft Build 2017 9/13/2018 6:30 PM Continuous Delivery Automated build on every change to the branch Automated deploy on every successful build Continuous Integration Services Version Control On change Build Scheduled Daily On Build Deploy Commit Manual © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Continuous Integration Services Microsoft Build 2017 9/13/2018 6:30 PM Continuous Delivery Automated build on every change to the branch Automated deploy on every successful build Continuous Integration Services Version Control On change Build On Build Deploy Repository Branches Workflow Policies Roles Build Def Build agent Build tasks Test tasks Analysis Packaging Release Def Target host Svc principle Svc endpoint Release tasks Commit © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

CI Pipeline Microsoft Build 2017 9/13/2018 6:30 PM Build Pipeline VSTS Build Agents Third Party Build tools Release Pipeline Hands-on demo © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Microsoft Build 2017 9/13/2018 6:30 PM Build Pipeline VSTS Build Agents Third Party Build tools Release Pipeline Hands-on demo © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Microsoft Build 2017 9/13/2018 6:30 PM Build Pipeline VSTS Build Agents Third Party Build tools Release Pipeline Hands-on demo © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Third Party build tools Microsoft Build 2017 9/13/2018 6:30 PM Third Party build tools Ant Grunt CMake Xcode Build Gulp etc. Build Pipeline VSTS Build Agents Third Party Build tools Release Pipeline Hands-on demo © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

9/13/2018 6:30 PM Let’s do it © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

9/13/2018 6:30 PM References Visual Studio Team Services Documentation https://docs.microsoft.com/en-us/vsts/ Visual Studio Team Services https://www.visualstudio.com/team-services/ Microsoft Virtual Academy http://bit.ly/DevOps_MVA © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

9/13/2018 6:30 PM Thank You!  © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.