forked from ionide/FsAutoComplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
57 lines (57 loc) · 1.5 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: $(Rev:r)
jobs:
- job: Windows
pool:
vmImage: 'vs2017-win2016'
steps:
- task: UseDotNet@2
displayName: 'Use .NET Core Sdk from global.json'
inputs:
useGlobalJson: true
- task: UseDotNet@2
displayName: 'Use .NET Core Sdk 2.1 to support paket git dependencies'
inputs:
packageType: sdk
version: 2.1.x
- script: dotnet tool restore
displayName: Install Tools
- script: dotnet fake build --target All
displayName: Build All
- task: PublishBuildArtifacts@1
inputs:
pathtoPublish: 'bin/pkgs'
artifactName: 'pkgs'
# - job: Linux
# pool:
# vmImage: 'ubuntu-16.04'
# steps:
# - task: UseDotNet@2
# displayName: 'Use .NET Core Sdk from global.json'
# inputs:
# useGlobalJson: true
# - task: UseDotNet@2
# displayName: 'Use .NET Core Sdk 2.1 to support paket git dependencies'
# inputs:
# packageType: sdk
# version: 2.1.x
# - script: dotnet tool restore
# displayName: Install Tools
# - script: dotnet fake build --target All
# displayName: Build All
- job: MacOS
pool:
vmImage: 'macOS-10.15'
steps:
- task: UseDotNet@2
displayName: 'Use .NET Core Sdk from global.json'
inputs:
useGlobalJson: true
- task: UseDotNet@2
displayName: 'Use .NET Core Sdk 2.1 to support paket git dependencies'
inputs:
packageType: sdk
version: 2.1.x
- script: dotnet tool restore
displayName: Install Tools
- script: dotnet fake build --target All
displayName: Build All