From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga05.intel.com (mga05.intel.com []) by mx.groups.io with SMTP id smtpd.web11.3678.1608346005731815811 for ; Fri, 18 Dec 2020 18:46:46 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: michael.d.kinney@intel.com) IronPort-SDR: KN0JqUxjuHkTOYlwGF/PdN7PNtgHp3yt2p0J2r882JKvIBC8zE6y+dQDiyvSnewOuUwYSwpbca hSYN36PnPIXQ== X-IronPort-AV: E=McAfee;i="6000,8403,9839"; a="260270913" X-IronPort-AV: E=Sophos;i="5.78,432,1599548400"; d="scan'208";a="260270913" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Dec 2020 18:46:44 -0800 IronPort-SDR: Wr0eHhn61eJjZOh5AWJp3lO5b1izPItROAxpQmDux6+Dcs4NMtvtQMiTcytPdPNA2dD1asYpAl 7A177IWV7nRA== X-IronPort-AV: E=Sophos;i="5.78,432,1599548400"; d="scan'208";a="354344410" Received: from mdkinney-mobl2.amr.corp.intel.com ([10.212.241.132]) by orsmga002-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Dec 2020 18:46:43 -0800 From: "Michael D Kinney" To: devel@edk2.groups.io Cc: Sean Brogan , Bret Barkelew , Liming Gao Subject: [Patch 1/4] .azurepipelines: Enable EDK II CI for stable/* branches Date: Fri, 18 Dec 2020 18:46:35 -0800 Message-Id: <20201219024638.1945-2-michael.d.kinney@intel.com> X-Mailer: git-send-email 2.29.2.windows.2 In-Reply-To: <20201219024638.1945-1-michael.d.kinney@intel.com> References: <20201219024638.1945-1-michael.d.kinney@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit https://bugzilla.tianocore.org/show_bug.cgi?id=3130 Cc: Sean Brogan Cc: Bret Barkelew Cc: Liming Gao Signed-off-by: Michael D Kinney --- .azurepipelines/Ubuntu-GCC5.yml | 2 ++ .azurepipelines/Ubuntu-PatchCheck.yml | 3 ++- .azurepipelines/Windows-VS2019.yml | 2 ++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.azurepipelines/Ubuntu-GCC5.yml b/.azurepipelines/Ubuntu-GCC5.yml index 7cd67c98da58..3760c6efe105 100644 --- a/.azurepipelines/Ubuntu-GCC5.yml +++ b/.azurepipelines/Ubuntu-GCC5.yml @@ -7,8 +7,10 @@ ## trigger: - master +- stable/* pr: - master +- stable/* jobs: - template: templates/pr-gate-build-job.yml diff --git a/.azurepipelines/Ubuntu-PatchCheck.yml b/.azurepipelines/Ubuntu-PatchCheck.yml index dff8f579b67f..4de453bf9db8 100644 --- a/.azurepipelines/Ubuntu-PatchCheck.yml +++ b/.azurepipelines/Ubuntu-PatchCheck.yml @@ -5,7 +5,7 @@ # NOTE: This example monitors pull requests against the edk2-ci branch. Most # environments would replace 'edk2-ci' with 'master'. # -# Copyright (c) 2019, Intel Corporation. All rights reserved.
+# Copyright (c) 2019 - 2020, Intel Corporation. All rights reserved.
# SPDX-License-Identifier: BSD-2-Clause-Patent # # https://github.com/tianocore @@ -16,6 +16,7 @@ trigger: none pr: - master +- stable/* pool: vmImage: 'ubuntu-latest' diff --git a/.azurepipelines/Windows-VS2019.yml b/.azurepipelines/Windows-VS2019.yml index d6b879cd9890..22f2d88c2c6a 100644 --- a/.azurepipelines/Windows-VS2019.yml +++ b/.azurepipelines/Windows-VS2019.yml @@ -6,9 +6,11 @@ ## trigger: - master +- stable/* pr: - master +- stable/* jobs: - template: templates/pr-gate-build-job.yml -- 2.29.2.windows.2