Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.
Merged
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
6 changes: 3 additions & 3 deletions build/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ extends:
targetPath: DevHomeStub\DevHomeStubPackage\AppxPackages

- stage: Build_DevHome
dependsOn: []
jobs:
- ${{ each configuration in parameters.Configurations }}:
- ${{ each platform in parameters.Platforms }}:
Expand Down Expand Up @@ -374,7 +375,7 @@ extends:

- stage: Test
dependsOn: [Build_DevHome]
condition: ${{ containsValue(parameters.Configurations, 'release') }}
condition: and(in(dependencies.Build_DevHome.result, 'Succeeded'), ${{ containsValue(parameters.Configurations, 'release') }})
jobs:
- job: DevHomeWin11x64Test
pool: server
Expand Down Expand Up @@ -550,8 +551,7 @@ extends:
targetPath: AppxBundles\Debug

- stage: Store_Publish
dependsOn:
- Build_MsixBundle
dependsOn: [Build_MsixBundle, Test]
condition: |
and
(
Expand Down