Skip to content

Commit

Permalink
Add Azure Pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
jeikabu committed Jan 10, 2020
1 parent ad6c456 commit bdac8ac
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit bdac8ac

Please sign in to comment.