summaryrefslogtreecommitdiff
path: root/.azurepipelines
diff options
context:
space:
mode:
authorMichael D Kinney <michael.d.kinney@intel.com>2021-07-07 16:21:44 -0700
committerMichael Kinney <michael.d.kinney@intel.com>2021-07-09 15:57:46 -0700
commit5ef08a49e3411a56a2afedbb11127279033c8915 (patch)
tree965cd958d1c0fc35c331fc4275552e35b6f495df /.azurepipelines
parentb491eace373ea3fa435a0136db3c38e0360e6f11 (diff)
downloadedk2-5ef08a49e3411a56a2afedbb11127279033c8915.zip
edk2-5ef08a49e3411a56a2afedbb11127279033c8915.tar.gz
edk2-5ef08a49e3411a56a2afedbb11127279033c8915.tar.bz2
.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 <sean.brogan@microsoft.com> Cc: Bret Barkelew <Bret.Barkelew@microsoft.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Bret Barkelew <bret.barkelew@microsoft.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
Diffstat (limited to '.azurepipelines')
-rw-r--r--.azurepipelines/templates/pr-gate-build-job.yml20
1 files changed, 0 insertions, 20 deletions
diff --git a/.azurepipelines/templates/pr-gate-build-job.yml b/.azurepipelines/templates/pr-gate-build-job.yml
index 3f9a280..207acc7 100644
--- a/.azurepipelines/templates/pr-gate-build-job.yml
+++ b/.azurepipelines/templates/pr-gate-build-job.yml
@@ -67,23 +67,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