From bdac8ac9b426592e55f82de1acf4bc33a49a99db Mon Sep 17 00:00:00 2001 From: jeikabu Date: Fri, 10 Jan 2020 12:38:25 +0200 Subject: [PATCH] Add Azure Pipelines --- azure-pipelines.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..e3726f1 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,27 @@ + +trigger: +- master + +strategy: + matrix: + linux: + imageName: 'ubuntu-18.04' + mac: + imageName: 'macos-10.14' + vs2017: + imageName: 'vs2017-win2016' + vs2019: + imageName: 'windows-2019' + +pool: + vmImage: $(imageName) + +steps: +- checkout: self + submodules: recursive +- pwsh: dotnet restore + displayName: 'Restore' +- pwsh: dotnet build + displayName: 'Build' +- pwsh: dotnet test --filter "platform!=windows" --verbosity normal tests + displayName: 'Test'