forked from MessagePack-CSharp/MessagePack-CSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
56 lines (49 loc) · 1.15 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
trigger:
branches:
include:
- master
- 'v?.*'
- 'validate/*'
paths:
exclude: ["doc", "*.md"]
variables:
TreatWarningsAsErrors: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
BuildConfiguration: Release
BuildPlatform: Any CPU
jobs:
- job: Windows
pool:
vmImage: windows-2019
steps:
- checkout: self
clean: true
- template: azure-pipelines/install-dependencies.yml
- powershell: '& (./azure-pipelines/Get-nbgv.ps1) cloud'
displayName: Set build number
- template: azure-pipelines/build.yml
- job: Unity
pool:
name: CustomAgents
demands: UNITYHUB_EDITORS_FOLDER_LOCATION
steps:
- checkout: self
clean: true
- template: azure-pipelines/install-dependencies.yml
- template: azure-pipelines/build_unity.yml
- job: Linux
pool:
vmImage: Ubuntu 16.04
steps:
- checkout: self
clean: true
- template: azure-pipelines/install-dependencies.yml
- template: azure-pipelines/build_nonWindows.yml
- job: macOS
pool:
vmImage: macOS-10.15
steps:
- checkout: self
clean: true
- template: azure-pipelines/install-dependencies.yml
- template: azure-pipelines/build_nonWindows.yml