From 36117ff856a818aceabb7387aaa168ae83052e75 Mon Sep 17 00:00:00 2001 From: Bhavani Ravi Date: Wed, 7 Aug 2019 08:02:52 +0530 Subject: [PATCH 1/3] add basic hello world pipeline --- azure-pipelines.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 000000000..161ea3410 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,14 @@ +# 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-latest' + + steps: +- script: echo Hello, world! + displayName: 'Run a one-line script' \ No newline at end of file From 6c9ce69cde3964eca4e89daab328e2641bb720a7 Mon Sep 17 00:00:00 2001 From: Bhavani Ravi Date: Wed, 7 Aug 2019 08:06:53 +0530 Subject: [PATCH 2/3] remove trigger to run from any branch --- azure-pipelines.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 161ea3410..b0de8c788 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -3,9 +3,6 @@ # Add steps that build, run tests, deploy, and more: # https://aka.ms/yaml - trigger: -- master - pool: vmImage: 'ubuntu-latest' From 0636b68736dc5a1f51d5c5f218a57e2c13d79109 Mon Sep 17 00:00:00 2001 From: Bhavani Ravi Date: Wed, 7 Aug 2019 08:15:50 +0530 Subject: [PATCH 3/3] remove trigger to run from any branch --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b0de8c788..3e57acd72 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -3,9 +3,9 @@ # Add steps that build, run tests, deploy, and more: # https://aka.ms/yaml - pool: +pool: vmImage: 'ubuntu-latest' - steps: +steps: - script: echo Hello, world! displayName: 'Run a one-line script' \ No newline at end of file