From eaff7dcf4ec86854d1152dad97920f9a867fa095 Mon Sep 17 00:00:00 2001 From: Mark Iantorno Date: Wed, 1 Feb 2023 11:11:48 -0500 Subject: [PATCH] Update release-branch-pipeline.yml for Azure Pipelines --- release-branch-pipeline.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/release-branch-pipeline.yml b/release-branch-pipeline.yml index 022701bf1..bd85a222c 100644 --- a/release-branch-pipeline.yml +++ b/release-branch-pipeline.yml @@ -108,6 +108,7 @@ jobs: # is that once we pull the code, it won't change again on this branch until the release is complete. We # want to fail fast if there is an issue, and avoid running the tests more than once so it doesn't take all day. timeoutInMinutes: 360 + dependsOn: ['get_release_version', 'get_branch_id', 'check_release_notes'] steps: # Runs 'mvn clean package' - task: Maven@3 @@ -122,6 +123,7 @@ jobs: goals: 'package' - job: publish_build_artifacts timeoutInMinutes: 5 + dependsOn: ['buildaroni'] steps: # Publishes the built Validator jar to build artifacts. Primarily for testing and debugging builds. - task: PublishPipelineArtifact@1