From 28295c33c819e4c10805457cf639acd063d61bc8 Mon Sep 17 00:00:00 2001 From: becega Date: Thu, 23 Jul 2020 12:07:27 -0700 Subject: [PATCH 1/4] 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 0000000..aa91291 --- /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-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 cbd8abc0e8a7614a2e29ea7d6c9c1deaa3b79f51 Mon Sep 17 00:00:00 2001 From: becega Date: Tue, 16 Feb 2021 22:26:28 -0600 Subject: [PATCH 2/4] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index aa91291..062edb3 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -7,7 +7,7 @@ trigger: - master pool: - vmImage: 'ubuntu-latest' + vmImage: 'DCAF Agents' steps: - script: echo Hello, world! From f652c6638b4f7c8eaf876b861a329a6783d332a6 Mon Sep 17 00:00:00 2001 From: becega Date: Tue, 16 Feb 2021 22:29:31 -0600 Subject: [PATCH 3/4] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 062edb3..9467ada 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -6,8 +6,7 @@ trigger: - master -pool: - vmImage: 'DCAF Agents' +pool: 'DCAF Agents' steps: - script: echo Hello, world! From f2f50eac114d75ce3f3d5097187a59ee04b8fe70 Mon Sep 17 00:00:00 2001 From: becega Date: Tue, 16 Feb 2021 22:42:47 -0600 Subject: [PATCH 4/4] Update azure-pipelines.yml for Azure Pipelines Version --- azure-pipelines.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9467ada..573ccfe 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -3,13 +3,17 @@ # Add steps that build, run tests, deploy, and more: # https://aka.ms/yaml +variables: + VIPMVersion : 1.1.0 + VIPMBuild: $[counter(variables['VIPMVersion'],0)] + trigger: - master pool: 'DCAF Agents' steps: -- script: echo Hello, world! +- script: echo Hello, world! $(VIPMVersion).$(VIPMBuild) displayName: 'Run a one-line script' - script: |