Skip to content

Commit bf3d10a

Browse files
authored
adding window test platform (#665)
* adding window test platform * revert arm64 removal
1 parent ce68b27 commit bf3d10a

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

.Tools/CI/Recipes/Triggers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ private ISet<IJobBuilder> GetTriggers()
2222
HashSet<IJobBuilder> builders =
2323
[
2424
JobBuilder.Create("Pull Request Trigger")
25-
.WithDependencies(allValidationJobs.Where(d => d.JobId.Contains("macos")))
25+
.WithDependencies(allValidationJobs.Where(d => d.JobId.Contains("macos") || d.JobId.Contains("windows")))
2626
.WithPullRequestTrigger(pr => pr.ExcludeDraft().And().WithTargetBranch("master"),
2727
true, cancelLeftoverJobs: CancelLeftoverJobs.Always)
2828
];

.yamato/triggers.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,15 @@ pull_request_trigger:
33
name: Pull Request Trigger
44
dependencies:
55
- path: .yamato/wrench/validation-jobs.yml#validate_-_probuilder_-_6000_0_-_macos
6+
- path: .yamato/wrench/validation-jobs.yml#validate_-_probuilder_-_6000_0_-_windows
67
- path: .yamato/wrench/validation-jobs.yml#validate_-_probuilder_-_6000_3_-_macos
8+
- path: .yamato/wrench/validation-jobs.yml#validate_-_probuilder_-_6000_3_-_windows
79
- path: .yamato/wrench/validation-jobs.yml#validate_-_probuilder_-_6000_4_-_macos
10+
- path: .yamato/wrench/validation-jobs.yml#validate_-_probuilder_-_6000_4_-_windows
811
- path: .yamato/wrench/validation-jobs.yml#validate_-_probuilder_-_6000_5_-_macos
12+
- path: .yamato/wrench/validation-jobs.yml#validate_-_probuilder_-_6000_5_-_windows
913
- path: .yamato/wrench/validation-jobs.yml#validate_-_probuilder_-_6000_6_-_macos
14+
- path: .yamato/wrench/validation-jobs.yml#validate_-_probuilder_-_6000_6_-_windows
1015
triggers:
1116
expression: |-
1217
NOT pull_request.draft AND

0 commit comments

Comments
 (0)