forked from microsoft/terminal
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: add a caching copy of the CI pipeline (microsoft#17392)
This is a place for @dfederm to work, but I couldn't create the pipeline definition without first creating the yml file _in main_. Thanks SFI.
- Loading branch information
Showing
1 changed file
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
trigger: | ||
batch: true | ||
# branches: | ||
# include: | ||
# - main | ||
# - feature/* | ||
# - gh-readonly-queue/* | ||
# paths: | ||
# exclude: | ||
# - doc/* | ||
# - samples/* | ||
# - tools/* | ||
|
||
#pr: | ||
# branches: | ||
# include: | ||
# - main | ||
# - feature/* | ||
# paths: | ||
# exclude: | ||
# - doc/* | ||
# - samples/* | ||
# - tools/* | ||
|
||
variables: | ||
- name: runCodesignValidationInjectionBG | ||
value: false | ||
|
||
# 0.0.yyMM.dd## | ||
# 0.0.1904.0900 | ||
name: 0.0.$(Date:yyMM).$(Date:dd)$(Rev:rr) | ||
|
||
parameters: | ||
- name: auditMode | ||
displayName: "Build in Audit Mode (x64)" | ||
type: boolean | ||
default: true | ||
- name: runTests | ||
displayName: "Run Tests" | ||
type: boolean | ||
default: true | ||
- name: buildPlatforms | ||
type: object | ||
default: | ||
- x64 | ||
- x86 | ||
- arm64 | ||
|
||
stages: | ||
- ${{ if eq(parameters.auditMode, true) }}: | ||
- stage: Audit_x64 | ||
displayName: Audit Mode | ||
dependsOn: [] | ||
jobs: | ||
- template: ./templates-v2/job-build-project.yml | ||
parameters: | ||
pool: | ||
${{ if eq(variables['System.CollectionUri'], 'https://dev.azure.com/ms/') }}: | ||
name: SHINE-OSS-L | ||
${{ if ne(variables['System.CollectionUri'], 'https://dev.azure.com/ms/') }}: | ||
name: SHINE-INT-L | ||
buildPlatforms: [x64] | ||
buildConfigurations: [AuditMode] | ||
buildEverything: true | ||
keepAllExpensiveBuildOutputs: false | ||
|
||
- ${{ each platform in parameters.buildPlatforms }}: | ||
- stage: Build_${{ platform }} | ||
displayName: Build ${{ platform }} | ||
dependsOn: [] | ||
jobs: | ||
- template: ./templates-v2/job-build-project.yml | ||
parameters: | ||
pool: | ||
${{ if eq(variables['System.CollectionUri'], 'https://dev.azure.com/ms/') }}: | ||
name: SHINE-OSS-L | ||
${{ if ne(variables['System.CollectionUri'], 'https://dev.azure.com/ms/') }}: | ||
name: SHINE-INT-L | ||
buildPlatforms: | ||
- ${{ platform }} | ||
buildConfigurations: [Release] | ||
buildEverything: true | ||
keepAllExpensiveBuildOutputs: false | ||
|
||
- ${{ if eq(parameters.runTests, true) }}: | ||
- stage: Test_${{ platform }} | ||
displayName: Test ${{ platform }} | ||
dependsOn: | ||
- Build_${{ platform }} | ||
condition: succeeded() | ||
jobs: | ||
- template: ./templates-v2/job-test-project.yml | ||
parameters: | ||
platform: ${{ platform }} | ||
# The tests might be run more than once; log one artifact per attempt. | ||
outputArtifactStem: -$(System.JobAttempt) |