From ebca7dd3193024f5c1990799848126395cb0b341 Mon Sep 17 00:00:00 2001 From: ramsessanchez <63934382+ramsessanchez@users.noreply.github.com> Date: Wed, 25 Aug 2021 12:56:04 -0700 Subject: [PATCH 1/8] Set up CI with Azure Pipelines [skip ci] --- .azure-pipelines/testPipeline.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .azure-pipelines/testPipeline.yml diff --git a/.azure-pipelines/testPipeline.yml b/.azure-pipelines/testPipeline.yml new file mode 100644 index 000000000..add968e4f --- /dev/null +++ b/.azure-pipelines/testPipeline.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: +- dev + +pool: + vmImage: ubuntu-latest + +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' From a29e5eeb0ce70f54b3f7be014df0c1b0a3ef7584 Mon Sep 17 00:00:00 2001 From: ramsessanchez <63934382+ramsessanchez@users.noreply.github.com> Date: Wed, 25 Aug 2021 12:58:05 -0700 Subject: [PATCH 2/8] Update testPipeline.yml for Azure Pipelines --- .azure-pipelines/testPipeline.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.azure-pipelines/testPipeline.yml b/.azure-pipelines/testPipeline.yml index add968e4f..d9149e4a7 100644 --- a/.azure-pipelines/testPipeline.yml +++ b/.azure-pipelines/testPipeline.yml @@ -4,7 +4,14 @@ # https://aka.ms/yaml trigger: -- dev + branches: + include: + - dev + - test + +pr: +- dev +- test pool: vmImage: ubuntu-latest From dfea7c487bfc9cfc07f7311ab14e35f51aefa1f1 Mon Sep 17 00:00:00 2001 From: ramsessanchez <63934382+ramsessanchez@users.noreply.github.com> Date: Wed, 25 Aug 2021 13:04:11 -0700 Subject: [PATCH 3/8] Update testPipeline.yml for Azure Pipelines --- .azure-pipelines/testPipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azure-pipelines/testPipeline.yml b/.azure-pipelines/testPipeline.yml index d9149e4a7..5a8ffb617 100644 --- a/.azure-pipelines/testPipeline.yml +++ b/.azure-pipelines/testPipeline.yml @@ -14,7 +14,7 @@ pr: - test pool: - vmImage: ubuntu-latest + vmImage: windows-latest steps: - script: echo Hello, world! From 98cd25fcc0e81bcfc777393197230b94ab0d079e Mon Sep 17 00:00:00 2001 From: ramsessanchez <63934382+ramsessanchez@users.noreply.github.com> Date: Wed, 25 Aug 2021 14:02:54 -0700 Subject: [PATCH 4/8] Set up CI with Azure Pipelines [skip ci] --- .azure-pipelines/testPipeline2.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .azure-pipelines/testPipeline2.yml diff --git a/.azure-pipelines/testPipeline2.yml b/.azure-pipelines/testPipeline2.yml new file mode 100644 index 000000000..10f3618e9 --- /dev/null +++ b/.azure-pipelines/testPipeline2.yml @@ -0,0 +1,23 @@ +# 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: +- dev + +pr: +- dev +- test + +pool: + vmImage: windows-latest + +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' From 997ed86a1b74159e04f7aa5f80a1698374bf4ab5 Mon Sep 17 00:00:00 2001 From: ramsessanchez <63934382+ramsessanchez@users.noreply.github.com> Date: Wed, 25 Aug 2021 14:03:57 -0700 Subject: [PATCH 5/8] Update testPipeline2.yml --- .azure-pipelines/testPipeline2.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.azure-pipelines/testPipeline2.yml b/.azure-pipelines/testPipeline2.yml index 10f3618e9..7d12528da 100644 --- a/.azure-pipelines/testPipeline2.yml +++ b/.azure-pipelines/testPipeline2.yml @@ -4,8 +4,10 @@ # https://aka.ms/yaml trigger: -- dev - + branches: + include: + - dev + - test pr: - dev - test From 3ca8a592f5d229b035ef31ba393728f9e2ad6617 Mon Sep 17 00:00:00 2001 From: ramsessanchez <63934382+ramsessanchez@users.noreply.github.com> Date: Wed, 25 Aug 2021 14:56:19 -0700 Subject: [PATCH 6/8] Delete testPipeline.yml --- .azure-pipelines/testPipeline.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .azure-pipelines/testPipeline.yml diff --git a/.azure-pipelines/testPipeline.yml b/.azure-pipelines/testPipeline.yml deleted file mode 100644 index 5a8ffb617..000000000 --- a/.azure-pipelines/testPipeline.yml +++ /dev/null @@ -1,26 +0,0 @@ -# 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: - branches: - include: - - dev - - test - -pr: -- dev -- test - -pool: - vmImage: windows-latest - -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' From 3a18d1ee12612838ca1cb7921d5a7010dd7d07f9 Mon Sep 17 00:00:00 2001 From: ramsessanchez <63934382+ramsessanchez@users.noreply.github.com> Date: Wed, 25 Aug 2021 14:56:26 -0700 Subject: [PATCH 7/8] Delete testPipeline2.yml --- .azure-pipelines/testPipeline2.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .azure-pipelines/testPipeline2.yml diff --git a/.azure-pipelines/testPipeline2.yml b/.azure-pipelines/testPipeline2.yml deleted file mode 100644 index 7d12528da..000000000 --- a/.azure-pipelines/testPipeline2.yml +++ /dev/null @@ -1,25 +0,0 @@ -# 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: - branches: - include: - - dev - - test -pr: -- dev -- test - -pool: - vmImage: windows-latest - -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' From 52b2a6291ce741e1888407acd23674778ce7dd58 Mon Sep 17 00:00:00 2001 From: ramsessanchez <63934382+ramsessanchez@users.noreply.github.com> Date: Wed, 25 Aug 2021 15:04:30 -0700 Subject: [PATCH 8/8] Set up CI with Azure Pipelines [skip ci] --- .azure-pipelines/testPipeline.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .azure-pipelines/testPipeline.yml diff --git a/.azure-pipelines/testPipeline.yml b/.azure-pipelines/testPipeline.yml new file mode 100644 index 000000000..f7a73cf9d --- /dev/null +++ b/.azure-pipelines/testPipeline.yml @@ -0,0 +1,25 @@ +# 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: + branches: + include: + - dev + - test +pr: +- dev +- test + +pool: + vmImage: windows-latest + +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' \ No newline at end of file