50 lines
1.9 KiB
YAML
50 lines
1.9 KiB
YAML
|
parameters:
|
||
|
# This template adds arcade-powered source-build to CI. The template produces a server job with a
|
||
|
# default ID 'Source_Build_Complete' to put in a dependency list if necessary.
|
||
|
|
||
|
# Specifies the prefix for source-build jobs added to pipeline. Use this if disambiguation needed.
|
||
|
jobNamePrefix: 'Source_Build'
|
||
|
|
||
|
# Defines the platform on which to run the job. By default, a linux-x64 machine, suitable for
|
||
|
# managed-only repositories. This is an object with these properties:
|
||
|
#
|
||
|
# name: ''
|
||
|
# The name of the job. This is included in the job ID.
|
||
|
# targetRID: ''
|
||
|
# The name of the target RID to use, instead of the one auto-detected by Arcade.
|
||
|
# nonPortable: false
|
||
|
# Enables non-portable mode. This means a more specific RID (e.g. fedora.32-x64 rather than
|
||
|
# linux-x64), and compiling against distro-provided packages rather than portable ones.
|
||
|
# container: ''
|
||
|
# A container to use. Runs in docker.
|
||
|
# pool: {}
|
||
|
# A pool to use. Runs directly on an agent.
|
||
|
# buildScript: ''
|
||
|
# Specifies the build script to invoke to perform the build in the repo. The default
|
||
|
# './build.sh' should work for typical Arcade repositories, but this is customizable for
|
||
|
# difficult situations.
|
||
|
# jobProperties: {}
|
||
|
# A list of job properties to inject at the top level, for potential extensibility beyond
|
||
|
# container and pool.
|
||
|
platform: {}
|
||
|
|
||
|
jobs:
|
||
|
- job: ${{ parameters.jobNamePrefix }}_${{ parameters.platform.name }}
|
||
|
displayName: Source-Build (${{ parameters.platform.name }})
|
||
|
|
||
|
${{ each property in parameters.platform.jobProperties }}:
|
||
|
${{ property.key }}: ${{ property.value }}
|
||
|
|
||
|
${{ if ne(parameters.platform.container, '') }}:
|
||
|
container: ${{ parameters.platform.container }}
|
||
|
${{ if ne(parameters.platform.pool, '') }}:
|
||
|
pool: ${{ parameters.platform.pool }}
|
||
|
|
||
|
workspace:
|
||
|
clean: all
|
||
|
|
||
|
steps:
|
||
|
- template: /eng/common/templates/steps/source-build.yml
|
||
|
parameters:
|
||
|
platform: ${{ parameters.platform }}
|