Skip to content

Commit

Permalink
[ci] Fix condition for MAUI integration test job (#8232)
Browse files Browse the repository at this point in the history
This test job should only run if the initial build was successful.
  • Loading branch information
pjcollins authored Aug 1, 2023
1 parent e803904 commit 964d2a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-tools/automation/azure-pipelines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ stages:
- stage: maui_tests
displayName: MAUI Tests
dependsOn: mac_build
condition: eq(variables['System.PullRequest.TargetBranch'], 'main')
condition: and(eq(dependencies.mac_build.result, 'Succeeded'), eq(variables['System.PullRequest.TargetBranch'], 'main'))
jobs:
# Check - "Xamarin.Android (MAUI Tests MAUI Integration)"
- job: maui_tests_integration
Expand Down

0 comments on commit 964d2a2

Please sign in to comment.