This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
2019-07-14 01:34:40 +00:00
|
|
|
jobs:
|
|
|
|
- job: build
|
|
|
|
displayName: 'standard'
|
|
|
|
pool:
|
|
|
|
vmImage: ubuntu-latest
|
2019-07-20 19:16:53 +00:00
|
|
|
strategy:
|
2019-07-14 01:34:40 +00:00
|
|
|
maxParallel: 10
|
|
|
|
matrix:
|
|
|
|
windows:
|
|
|
|
BuildSuffix: 'windows-mingw'
|
|
|
|
ScriptFolder: 'windows'
|
|
|
|
linux:
|
|
|
|
BuildSuffix: 'linux'
|
|
|
|
ScriptFolder: 'linux'
|
|
|
|
steps:
|
|
|
|
- template: ./sync-source.yml
|
|
|
|
parameters:
|
|
|
|
artifactSource: $(parameters.artifactSource)
|
|
|
|
needSubmodules: 'true'
|
|
|
|
- template: ./build-single.yml
|
|
|
|
parameters:
|
|
|
|
artifactSource: 'false'
|