forked from GitTools/GitVersion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
37 lines (37 loc) · 942 Bytes
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
jobs:
- job: macOS
pool:
vmImage: 'macOS 10.13'
steps:
- task: DotNetCoreInstaller@0
displayName: 'Use .NET Core sdk 2.1.403'
inputs:
version: 2.1.403
- powershell: ./build.ps1 -script build.cake -target Default
displayName: 'Cake build'
- job: Linux
pool:
vmImage: 'Ubuntu 16.04'
steps:
- task: DotNetCoreInstaller@0
displayName: 'Use .NET Core sdk 2.1.403'
inputs:
version: 2.1.403
- task: UseRubyVersion@0
inputs:
addToPath: true # Optional
- powershell: ./build.ps1 -script build.cake -target Default
displayName: 'Cake build'
- job: Windows
pool:
vmImage: 'VS2017-Win2016'
steps:
- task: DotNetCoreInstaller@0
displayName: 'Use .NET Core sdk 2.1.403'
inputs:
version: 2.1.403
- task: UseRubyVersion@0
inputs:
addToPath: true # Optional
- powershell: ./build.ps1 -script build.cake -target Default
displayName: 'Cake build'