From fe7598276563007da3ac3553916d355e4b96bd97 Mon Sep 17 00:00:00 2001
From: guptajit <43016333+guptajit@users.noreply.github.com>
Date: Wed, 5 Sep 2018 17:23:25 -0400
Subject: [PATCH 1/2] Update index.html
---
index.html | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/index.html b/index.html
index d971cf9e0..04dc4d2a2 100644
--- a/index.html
+++ b/index.html
@@ -27,8 +27,7 @@
Congratulations!
-
You have successfully created a pipeline that retrieved this source application from an Amazon S3 bucket and deployed it
- to three Amazon EC2 instances using AWS CodeDeploy.
+
You have successfully created a pipeline that retrieved this source application from GitHub and deployed it to one Amazon EC2 instance using AWS Elastic Beanstalk. You’re one step closer to practicing continuous deployment!
For next steps, read the AWS CodePipeline Documentation.
From ec7155a8c36b5692c3b2484101eafb8dbc6b5445 Mon Sep 17 00:00:00 2001
From: guptajit <43016333+guptajit@users.noreply.github.com>
Date: Sun, 7 Apr 2019 00:10:35 -0400
Subject: [PATCH 2/2] Set up CI with Azure Pipelines [skip ci]
---
azure-pipelines.yml | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
create mode 100644 azure-pipelines.yml
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
new file mode 100644
index 000000000..c23ced43c
--- /dev/null
+++ b/azure-pipelines.yml
@@ -0,0 +1,19 @@
+# Starter pipeline
+# Start with a minimal pipeline that you can customize to build and deploy your code.
+# Add steps that build, run tests, deploy, and more:
+# https://aka.ms/yaml
+
+trigger:
+- master
+
+pool:
+ vmImage: 'Ubuntu-16.04'
+
+steps:
+- script: echo Hello, world!
+ displayName: 'Run a one-line script'
+
+- script: |
+ echo Add other tasks to build, test, and deploy your project.
+ echo See https://aka.ms/yaml
+ displayName: 'Run a multi-line script'