From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web10.3337.1662518257319109581 for ; Tue, 06 Sep 2022 19:37:37 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="body hash did not verify" header.i=@linux.microsoft.com header.s=default header.b=GSaz85h3; spf=pass (domain: linux.microsoft.com, ip: 13.77.154.182, mailfrom: mikuback@linux.microsoft.com) Received: from localhost.localdomain (unknown [47.195.228.134]) by linux.microsoft.com (Postfix) with ESMTPSA id 12C5D20B929C; Tue, 6 Sep 2022 19:37:35 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 12C5D20B929C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1662518256; bh=XJPkeibbca1MhIw+x9+oEhwZ9m1zjiQfRUjIhuu6RpI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=GSaz85h3BsdmUh+cbttVN5YHwmO/9Zp9hvZPc1rX2auN1ZMUDWTL9TYGdth6q2qNk kMhrLMInm7RQMyBXWogjnqxwg+H9UOyu6BkIhrNP9d8yhYJcBO6SpWag15pnp5Omi8 SP3F8p8JX0XzPsnysUlz63J+6ONcs+P5Zc3yBwgM= From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Leif Lindholm , Ard Biesheuvel , Abner Chang , Daniel Schaefer Subject: [PATCH v1 3/3] EmbeddedPkg: Only run in CI for GCC5 Date: Tue, 6 Sep 2022 22:36:49 -0400 Message-Id: <20220907023649.312-4-mikuback@linux.microsoft.com> X-Mailer: git-send-email 2.28.0.windows.1 In-Reply-To: <20220907023649.312-1-mikuback@linux.microsoft.com> References: <20220907023649.312-1-mikuback@linux.microsoft.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Kubacki REF:https://bugzilla.tianocore.org/show_bug.cgi?id=3D4046 This package currently does not build on non-GCC toolchains. This change adds the package to edk2 CI so it can benefit from ongoing CI and only tests the package against GCC. Cc: Leif Lindholm Cc: Ard Biesheuvel Cc: Abner Chang Cc: Daniel Schaefer Signed-off-by: Michael Kubacki --- .azurepipelines/templates/pr-gate-build-job.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.azurepipelines/templates/pr-gate-build-job.yml b/.azurepipe= lines/templates/pr-gate-build-job.yml index 0e4ad019bf03..54a74a1a9873 100644 --- a/.azurepipelines/templates/pr-gate-build-job.yml +++ b/.azurepipelines/templates/pr-gate-build-job.yml @@ -21,6 +21,10 @@ jobs: #Use matrix to speed up the build process strategy: matrix: + ${{ if eq(parameters.tool_chain_tag, 'GCC5') }}: + TARGET_GCC_ONLY: + Build.Pkgs: 'EmbeddedPkg' + Build.Targets: 'DEBUG,RELEASE,NO-TARGET,NOOPT' TARGET_ARM_ARMPLATFORM: Build.Pkgs: 'ArmPkg,ArmPlatformPkg' Build.Targets: 'DEBUG,RELEASE,NO-TARGET,NOOPT' --=20 2.28.0.windows.1