Skip to content

Commit

Permalink
[CI] Ensure that the new dependencies are correcly managed. (#19621)
Browse files Browse the repository at this point in the history
  • Loading branch information
mandel-macaque authored Dec 12, 2023
1 parent 1173c01 commit 5cac237
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions tools/devops/automation/templates/main-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,7 @@ stages:
}}
: - template: ./release/vs-insertion-prep.yml
parameters:
buildStage: build_packages
dependsOn: [ build_packages, configure_build ]
stageDisplayNamePrefix: ${{ parameters.stageDisplayNamePrefix }}
isPR: ${{ parameters.isPR }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
parameters:
- name: buildStage
type: string

- name: dependsOn
type: object
default: null
Expand Down Expand Up @@ -33,8 +36,8 @@ stages:
dependsOn: ${{ parameters.dependsOn }}
condition: and(
or(
eq(dependencies.${{ parameters.dependsOn }}.result, 'Succeeded'),
eq(dependencies.${{ parameters.dependsOn }}.result, 'SucceededWithIssues')
eq(dependencies.${{ parameters.buildStage }}.result, 'Succeeded'),
eq(dependencies.${{ parameters.buildStage }}.result, 'SucceededWithIssues')
),
eq(${{ parameters.isPR }}, false)
)
Expand All @@ -50,7 +53,6 @@ stages:
signType: Real
usePipelineArtifactTasks: true
condition: "ne(stageDependencies.configure_build.configure.outputs['configure_platforms.ENABLE_DOTNET'],'')"
dependsOn: configure

# Check - "xamarin-macios (Prepare Release Convert NuGet to MSI)"
- template: nuget-msi-convert/job/v3.yml@yaml-templates
Expand Down

9 comments on commit 5cac237

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

Please sign in to comment.