Skip to content

Commit 7c39944

Browse files
azure-pipelines[bot]ethomson
authored andcommitted
Set up CI with Azure Pipelines
1 parent 321ac06 commit 7c39944

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

azure-pipelines.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
pool:
18+
vmImage: 'Ubuntu 16.04'
19+
steps:
20+
- script: ./buildandtest.sh
21+
- job: macOS
22+
pool:
23+
vmImage: 'macOS 10.13'
24+
steps:
25+
- script: ./buildandtest.sh

0 commit comments

Comments
 (0)