Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
# Licensed under the MIT License.
parameters:
MUXFinalRelease: false
condition: true

stages:
- stage: RunStaticTests
displayName: Run Static Tests Stage
dependsOn: Build
condition: not(failed())
condition: and(not(failed()), ${{ parameters.condition }})
jobs:
- template: WinUI-RunStaticTests-Job.yml
parameters:
Expand Down
3 changes: 2 additions & 1 deletion build/WinUI-GitHub-PR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,10 @@ extends:
failOnTestFailure: false

- ${{ if eq(parameters.runFullValidation, true) }}:
- template: build\AzurePipelinesTemplates\WinUI-RunStaticTests-Stage.yml@WinUIInternal
- template: AzurePipelinesTemplates\WinUI-RunStaticTests-Stage.yml
parameters:
MUXFinalRelease: ${{ parameters.MUXFinalRelease }}
condition: false
Comment thread
harshit7962 marked this conversation as resolved.
Comment thread
harshit7962 marked this conversation as resolved.

- ${{ if eq(parameters.runFullValidation, true) }}:
- template: build\AzurePipelinesTemplates\WinUI-RunScenarioTests-Stage.yml@WinUIInternal
Expand Down
Loading