We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 321ac06 commit 7c39944Copy full SHA for 7c39944
azure-pipelines.yml
@@ -0,0 +1,25 @@
1
+trigger:
2
+- master
3
+- maint/*
4
+
5
+variables:
6
+ solution: '**/*.sln'
7
+ buildPlatform: 'Any CPU'
8
+ buildConfiguration: 'Release'
9
10
+jobs:
11
+- job: Windows
12
+ pool:
13
+ vmImage: 'VS2017-Win2016'
14
+ steps:
15
+ - script: buildandtest.cmd
16
+- job: Linux
17
18
+ vmImage: 'Ubuntu 16.04'
19
20
+ - script: ./buildandtest.sh
21
+- job: macOS
22
23
+ vmImage: 'macOS 10.13'
24
25
0 commit comments