From ec96dcd6cd4e8522f208ba6f1943d9428735cccf Mon Sep 17 00:00:00 2001 From: Michael D Kinney Date: Wed, 7 Jul 2021 16:21:44 -0700 Subject: [PATCH] .azurepipelines: Remove FINISHED and FAILED states Remove 10 second delay workarounds for issues observed when Mergify was originally enabled. These issues are no longer present when GitHub branch protections are used for status checks. Cc: Sean Brogan Cc: Bret Barkelew Cc: Liming Gao Signed-off-by: Michael D Kinney Reviewed-by: Bret Barkelew Reviewed-by: Liming Gao (cherry picked from commit 5ef08a49e3411a56a2afedbb11127279033c8915) --- .../templates/pr-gate-build-job.yml | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/.azurepipelines/templates/pr-gate-build-job.yml b/.azurepipelines/templates/pr-gate-build-job.yml index 031a99a..4ba76b0 100644 --- a/.azurepipelines/templates/pr-gate-build-job.yml +++ b/.azurepipelines/templates/pr-gate-build-job.yml @@ -46,23 +46,3 @@ jobs: build_pkgs: $(Build.Pkgs) build_targets: $(Build.Targets) build_archs: ${{ parameters.arch_list }} - -- job: FINISHED - dependsOn: Build_${{ parameters.tool_chain_tag }} - condition: succeeded() - steps: - - checkout: none - - script: | - echo FINISHED - sleep 10 - displayName: FINISHED - -- job: FAILED - dependsOn: Build_${{ parameters.tool_chain_tag }} - condition: failed() - steps: - - checkout: none - - script: | - echo FAILED - sleep 10 - displayName: FAILED