Hello GitHub
This commit is contained in:
27
build/pipelines/templates/build-app-public.yaml
Normal file
27
build/pipelines/templates/build-app-public.yaml
Normal file
@@ -0,0 +1,27 @@
|
||||
# This template contains a job to build the app for a single architecture.
|
||||
# Only the contents of the public repository are built; internal resources are not used.
|
||||
|
||||
parameters:
|
||||
platform: ''
|
||||
condition: ''
|
||||
|
||||
jobs:
|
||||
- job: Build${{ parameters.platform }}
|
||||
displayName: Build ${{ parameters.platform }}
|
||||
condition: ${{ parameters.condition }}
|
||||
pool:
|
||||
name: Package ES Custom Demands Lab A
|
||||
demands:
|
||||
- msbuild
|
||||
- visualstudio
|
||||
- ClientAlias -equals PKGESUTILAPPS
|
||||
variables:
|
||||
BuildConfiguration: Release
|
||||
BuildPlatform: ${{ parameters.platform }}
|
||||
workspace:
|
||||
clean: outputs
|
||||
steps:
|
||||
- checkout: self
|
||||
clean: true
|
||||
|
||||
- template: ./build-single-architecture.yaml
|
Reference in New Issue
Block a user