Files
sqltoolsservice/azure-pipelines/build-and-release.yml
Aasim Khan 3f711ef6dc Using custom 1ES pool for running build pipelines. (#1414)
* Enable trimming to reduce package size

* trimming kusto

* Trying a new pool

* Fixing yaml errors

* Removing package trimming

* Removing formatting changes

* Using specific image

* Fixing formatting

* Fixing yml syntax
2022-02-28 13:02:39 -08:00

30 lines
566 B
YAML

trigger: none
pr: none
stages:
- stage: Build
jobs:
- job: Build
pool:
name: 'ads-build-1es-hosted-pool'
demands:
- ImageOverride -equals ADS-Windows_Image
steps:
- template: build.yml
- stage: Release
variables:
- name: skipComponentGovernanceDetection
value: true
dependsOn:
- Build
condition: and(succeeded(), eq(variables['RELEASE'], 'true'))
pool:
name: 'ads-build-1es-hosted-pool'
demands:
- ImageOverride -equals ADS-Linux_Image
jobs:
- job: Release
steps:
- template: release.yml