2018-12-12 07:05:55 +03:00
|
|
|
trigger:
|
|
|
|
branches:
|
2018-12-24 08:44:18 +03:00
|
|
|
include: ["master", "v1.8", "*_validate"]
|
2018-12-12 07:05:55 +03:00
|
|
|
paths:
|
|
|
|
exclude: ["doc", "*.md"]
|
|
|
|
|
|
|
|
variables:
|
|
|
|
TreatWarningsAsErrors: true
|
|
|
|
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
|
|
|
|
BuildConfiguration: Release
|
|
|
|
BuildPlatform: Any CPU
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
- job: Windows
|
2019-06-03 05:48:18 +03:00
|
|
|
pool:
|
|
|
|
vmImage: windows-2019
|
2018-12-12 07:05:55 +03:00
|
|
|
steps:
|
2019-11-20 01:28:05 +03:00
|
|
|
- checkout: self
|
|
|
|
clean: true
|
|
|
|
- template: azure-pipelines/install-dependencies.yml
|
|
|
|
|
|
|
|
- powershell: '& (./azure-pipelines/Get-nbgv.ps1) cloud'
|
|
|
|
displayName: Set build number
|
|
|
|
|
2018-12-12 07:05:55 +03:00
|
|
|
- template: azure-pipelines/build.yml
|
2019-04-15 17:36:15 +03:00
|
|
|
|
2019-07-21 02:49:48 +03:00
|
|
|
- job: Unity
|
|
|
|
pool:
|
|
|
|
name: CustomAgents
|
|
|
|
demands: UNITYHUB_EDITORS_FOLDER_LOCATION
|
|
|
|
steps:
|
2019-11-20 01:28:05 +03:00
|
|
|
- checkout: self
|
|
|
|
clean: true
|
|
|
|
- template: azure-pipelines/install-dependencies.yml
|
2019-07-21 02:49:48 +03:00
|
|
|
- template: azure-pipelines/build_unity.yml
|
2019-11-06 20:44:40 +03:00
|
|
|
|
|
|
|
- job: Linux
|
|
|
|
pool:
|
|
|
|
vmImage: Ubuntu 16.04
|
|
|
|
steps:
|
|
|
|
- checkout: self
|
|
|
|
clean: true
|
2019-11-20 01:28:05 +03:00
|
|
|
- template: azure-pipelines/install-dependencies.yml
|
2019-11-06 20:44:40 +03:00
|
|
|
- template: azure-pipelines/build_nonWindows.yml
|
|
|
|
|
|
|
|
- job: macOS
|
|
|
|
pool:
|
|
|
|
vmImage: macOS 10.13
|
|
|
|
steps:
|
|
|
|
- checkout: self
|
|
|
|
clean: true
|
2019-11-20 01:28:05 +03:00
|
|
|
- template: azure-pipelines/install-dependencies.yml
|
2019-11-06 20:44:40 +03:00
|
|
|
- template: azure-pipelines/build_nonWindows.yml
|