From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mx.groups.io with SMTP id smtpd.web09.7481.1625716152976999038 for ; Wed, 07 Jul 2021 20:49:13 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.43, mailfrom: michael.d.kinney@intel.com) X-IronPort-AV: E=McAfee;i="6200,9189,10038"; a="295075108" X-IronPort-AV: E=Sophos;i="5.84,222,1620716400"; d="scan'208";a="295075108" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Jul 2021 20:49:11 -0700 X-IronPort-AV: E=Sophos;i="5.84,222,1620716400"; d="scan'208";a="411198805" Received: from mdkinney-mobl2.amr.corp.intel.com ([10.209.48.134]) by orsmga003-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Jul 2021 20:49:10 -0700 From: "Michael D Kinney" To: devel@edk2.groups.io Cc: Sean Brogan , Bret Barkelew , Liming Gao Subject: [Patch 3/3] .azurepipelines: Remove FINISHED and FAILED states Date: Wed, 7 Jul 2021 20:49:02 -0700 Message-Id: <20210708034902.1608-4-michael.d.kinney@intel.com> X-Mailer: git-send-email 2.32.0.windows.1 In-Reply-To: <20210708034902.1608-1-michael.d.kinney@intel.com> References: <20210708034902.1608-1-michael.d.kinney@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 --- .../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 3f9a28024567..207acc76316f 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 -- 2.32.0.windows.1