Skip to content

Commit

Permalink
fix build stages (#3905)
Browse files Browse the repository at this point in the history
  • Loading branch information
EricJohnson327 authored Sep 27, 2024
1 parent e000c37 commit bf3d0aa
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit bf3d0aa

Please sign in to comment.