From c90ae8b39a7a890e47ef721b4be85d51aefd29f8 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" Date: Mon, 4 Feb 2019 21:32:00 +0000 Subject: [PATCH 1/4] Set up CI with Azure Pipelines [#163712686] --- azure-pipelines.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..d6f40c5 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,17 @@ +# ASP.NET Core +# Build and test ASP.NET Core projects targeting .NET Core. +# Add steps that run tests, create a NuGet package, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core + +trigger: +- master + +pool: + vmImage: 'Ubuntu-16.04' + +variables: + buildConfiguration: 'Release' + +steps: +- script: dotnet build --configuration $(buildConfiguration) + displayName: 'dotnet build $(buildConfiguration)' From 8d8022c02b154e60c01b6cc2dca35a87297bba3a Mon Sep 17 00:00:00 2001 From: Herkles Date: Mon, 4 Feb 2019 17:00:50 -0500 Subject: [PATCH 2/4] update the pipeline definition [#163712686] --- azure-pipelines.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d6f40c5..28712a4 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -13,5 +13,8 @@ variables: buildConfiguration: 'Release' steps: +- task: DotnetCoreInstaller@0 + version: '2.2.103' + displayname: 'Dotnet sdk' - script: dotnet build --configuration $(buildConfiguration) displayName: 'dotnet build $(buildConfiguration)' From 340d5a0556ce332a316e754fc2aca58b9417f1af Mon Sep 17 00:00:00 2001 From: Herkles Date: Mon, 4 Feb 2019 17:04:03 -0500 Subject: [PATCH 3/4] update the pipeline definition [#163712686] --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 28712a4..64a2d71 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -15,6 +15,6 @@ variables: steps: - task: DotnetCoreInstaller@0 version: '2.2.103' - displayname: 'Dotnet sdk' + displayName: 'Dotnet sdk' - script: dotnet build --configuration $(buildConfiguration) displayName: 'dotnet build $(buildConfiguration)' From ff93ced2b3b5c8717ee957533021e0ba909068b9 Mon Sep 17 00:00:00 2001 From: Herkles Date: Mon, 4 Feb 2019 17:04:56 -0500 Subject: [PATCH 4/4] update the pipeline definition for installer [#163712686] --- azure-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 64a2d71..551a72c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -14,7 +14,8 @@ variables: steps: - task: DotnetCoreInstaller@0 - version: '2.2.103' + inputs: + version: '2.2.103' displayName: 'Dotnet sdk' - script: dotnet build --configuration $(buildConfiguration) displayName: 'dotnet build $(buildConfiguration)'