36 lines
851 B
YAML
36 lines
851 B
YAML
#
|
|
# See https://docs.microsoft.com/en-us/vsts/pipelines/yaml-schema for details on this file.
|
|
#
|
|
|
|
# Configure which branches trigger builds
|
|
trigger:
|
|
batch: true
|
|
branches:
|
|
include:
|
|
- master
|
|
|
|
stages:
|
|
- stage: build_components
|
|
displayName: Build Components
|
|
jobs:
|
|
# Build components on Windows (x64)
|
|
- template: jobs/default-build.yml
|
|
parameters:
|
|
codeSign: false
|
|
jobName: Windows_build
|
|
jobDisplayName: "Build: Windows x64/x86"
|
|
agentOs: Windows
|
|
steps:
|
|
- script: cd ./src/Components
|
|
- script: ./build.cmd
|
|
-ci
|
|
-arch x64
|
|
/bl:artifacts/log/build.x64.binlog
|
|
$(_BuildArgs)
|
|
displayName: Build x64
|
|
artifacts:
|
|
- name: Windows_Logs
|
|
path: artifacts/log/
|
|
publishOnError: true
|
|
includeForks: true
|