2018-12-27 22:58:46 +00:00
|
|
|
trigger:
|
|
|
|
- master
|
2019-03-03 19:15:26 +00:00
|
|
|
- release/*
|
2018-12-26 18:36:16 +00:00
|
|
|
pr:
|
|
|
|
- master
|
2019-03-03 19:15:26 +00:00
|
|
|
- release/*
|
2018-12-26 18:36:16 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
- job: windows
|
|
|
|
displayName: 'Windows'
|
|
|
|
pool:
|
|
|
|
vmImage: 'VS2017-Win2016'
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
Win32:
|
|
|
|
BuildPlatform: 'Win32'
|
|
|
|
Win64:
|
|
|
|
BuildPlatform: 'x64'
|
|
|
|
|
|
|
|
steps:
|
2019-01-05 19:11:29 +00:00
|
|
|
- template: azure-pipelines/templates/ci-git-rebase.yml
|
|
|
|
- template: azure-pipelines/templates/windows-dependencies.yml
|
|
|
|
- template: azure-pipelines/templates/ci-opengfx.yml
|
|
|
|
- template: azure-pipelines/templates/windows-build.yml
|
|
|
|
parameters:
|
|
|
|
BuildPlatform: $(BuildPlatform)
|
2019-05-10 20:20:10 +00:00
|
|
|
BuildConfiguration: Debug
|
2018-12-31 16:25:08 +00:00
|
|
|
- script: |
|
|
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
|
|
|
|
cd projects
|
|
|
|
call regression.bat
|
|
|
|
displayName: 'Test'
|
2018-12-26 18:36:16 +00:00
|
|
|
|
|
|
|
- job: linux
|
|
|
|
displayName: 'Linux'
|
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-16.04'
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2019-05-02 20:17:09 +00:00
|
|
|
commit-checker:
|
|
|
|
Tag: 'commit-checker'
|
|
|
|
linux-amd64-clang-3.8:
|
|
|
|
Tag: 'linux-amd64-clang-3.8'
|
|
|
|
linux-amd64-gcc-6:
|
|
|
|
Tag: 'linux-amd64-gcc-6'
|
|
|
|
linux-i386-gcc-6:
|
|
|
|
Tag: 'linux-i386-gcc-6'
|
2018-12-26 18:36:16 +00:00
|
|
|
|
|
|
|
steps:
|
2019-01-05 19:11:29 +00:00
|
|
|
- template: azure-pipelines/templates/ci-git-rebase.yml
|
|
|
|
# The dockers already have the dependencies installed
|
|
|
|
# The dockers already have OpenGFX installed
|
|
|
|
- template: azure-pipelines/templates/linux-build.yml
|
|
|
|
parameters:
|
|
|
|
Image: compile-farm-ci
|
2019-05-02 20:17:09 +00:00
|
|
|
Tag: $(Tag)
|
2018-12-26 18:36:16 +00:00
|
|
|
|
|
|
|
- job: macos
|
|
|
|
displayName: 'MacOS'
|
|
|
|
pool:
|
|
|
|
vmImage: 'macOS-10.13'
|
|
|
|
|
2019-02-24 20:34:37 +00:00
|
|
|
variables:
|
|
|
|
MACOSX_DEPLOYMENT_TARGET: 10.9
|
|
|
|
|
2018-12-26 18:36:16 +00:00
|
|
|
steps:
|
2019-01-05 19:11:29 +00:00
|
|
|
- template: azure-pipelines/templates/ci-git-rebase.yml
|
|
|
|
- template: azure-pipelines/templates/osx-dependencies.yml
|
|
|
|
- template: azure-pipelines/templates/ci-opengfx.yml
|
|
|
|
- template: azure-pipelines/templates/osx-build.yml
|
2018-12-26 18:36:16 +00:00
|
|
|
- script: 'make regression'
|
|
|
|
displayName: 'Test'
|