Skip to content

Commit 6320d49

Browse files
committed
added azure-pipelines.yml
1 parent 27d9d89 commit 6320d49

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

azure-pipelines.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
jobs:
2+
- job: macOS
3+
pool:
4+
vmImage: 'macOS 10.13'
5+
steps:
6+
- task: DotNetCoreInstaller@0
7+
displayName: 'Use .NET Core sdk 2.1.401'
8+
inputs:
9+
version: 2.1.401
10+
- powershell: ./run.ps1 -script build.cake -target Unix
11+
displayName: 'Cake build'
12+
- job: Linux
13+
pool:
14+
vmImage: 'Ubuntu 16.04'
15+
steps:
16+
- task: DotNetCoreInstaller@0
17+
displayName: 'Use .NET Core sdk 2.1.401'
18+
inputs:
19+
version: 2.1.401
20+
- powershell: ./run.ps1 -script build.cake -target Unix
21+
displayName: 'Cake build'
22+
- job: Windows
23+
pool:
24+
vmImage: 'VS2017-Win2016'
25+
steps:
26+
- task: DotNetCoreInstaller@0
27+
displayName: 'Use .NET Core sdk 2.1.401'
28+
inputs:
29+
version: 2.1.401
30+
- powershell: ./run.ps1 -script build.cake
31+
displayName: 'Cake build'

src/GitVersion.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1616
..\.travis.yml = ..\.travis.yml
1717
..\appveyor.deploy.yml = ..\appveyor.deploy.yml
1818
..\appveyor.yml = ..\appveyor.yml
19+
..\azure-pipelines.yml = ..\azure-pipelines.yml
1920
..\BREAKING CHANGES.md = ..\BREAKING CHANGES.md
2021
..\build.cake = ..\build.cake
2122
..\build.ps1 = ..\build.ps1

0 commit comments

Comments
 (0)