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.web12.7315.1648863143612340542 for ; Fri, 01 Apr 2022 18:32:23 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="body hash did not verify" header.i=@linux.microsoft.com header.s=default header.b=Sqbo7RYT; spf=pass (domain: linux.microsoft.com, ip: 13.77.154.182, mailfrom: mikuback@linux.microsoft.com) Received: from localhost.localdomain (unknown [47.202.59.224]) by linux.microsoft.com (Postfix) with ESMTPSA id 5226820DF569; Fri, 1 Apr 2022 18:32:22 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 5226820DF569 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1648863143; bh=lAU/9W2JecdvTZvf6MjGIYK1pohmwY2dZBcwTNw8wl0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Sqbo7RYTvAbR1maqVuzYIIbga2YmeKdoaMIyVqL/AKQKLanqJ2pe0JUEjtKzkjBYc 5ptZ+rdKusNR6TMEiMhaprMpKVWm3uAThTdxqsachS9Edtw5JMfCW5HYqWnV/0coxM X32A61wOdK88wNlwop6u8hWLFFCh2K5uAqA/Mcc8= From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Sean Brogan , Bret Barkelew , Michael D Kinney , Liming Gao Subject: [PATCH v2 1/5] .azurepipelines: Use Python 3.8 Date: Fri, 1 Apr 2022 21:31:52 -0400 Message-Id: <20220402013156.2640-2-mikuback@linux.microsoft.com> X-Mailer: git-send-email 2.28.0.windows.1 In-Reply-To: <20220402013156.2640-1-mikuback@linux.microsoft.com> References: <20220402013156.2640-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=3D3891 Changes the Python version used in pipelines to 3.8.x (3.8.12) to workaround an issue discovered after 3.9.10 that causes stuart_update to fail on a web_dependency (e.g. GCC ARM compilers). The Python version should be updated to latest once that issue is root caused and a long term fix is in place. This change is introduced now to unblock overall CI. Cc: Sean Brogan Cc: Bret Barkelew Cc: Michael D Kinney Cc: Liming Gao Signed-off-by: Michael Kubacki Reviewed-by: Sean Brogan --- .azurepipelines/Ubuntu-PatchCheck.yml | 2 +- .azurepipelines/templates/platform-build-run-steps.yml | 2 +- .azurepipelines/templates/pr-gate-steps.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.azurepipelines/Ubuntu-PatchCheck.yml b/.azurepipelines/Ubun= tu-PatchCheck.yml index d55c238592ef..1bc28176b6e8 100644 --- a/.azurepipelines/Ubuntu-PatchCheck.yml +++ b/.azurepipelines/Ubuntu-PatchCheck.yml @@ -27,7 +27,7 @@ steps: =20 - task: UsePythonVersion@0 inputs: - versionSpec: '3.9.x' + versionSpec: '3.8.x' architecture: 'x64' =20 - script: | diff --git a/.azurepipelines/templates/platform-build-run-steps.yml b/.az= urepipelines/templates/platform-build-run-steps.yml index 36cdce9bf8fa..97e7faa26682 100644 --- a/.azurepipelines/templates/platform-build-run-steps.yml +++ b/.azurepipelines/templates/platform-build-run-steps.yml @@ -42,7 +42,7 @@ steps: =20 - task: UsePythonVersion@0 inputs: - versionSpec: "3.9.x" + versionSpec: "3.8.x" architecture: "x64" =20 - script: pip install -r pip-requirements.txt --upgrade diff --git a/.azurepipelines/templates/pr-gate-steps.yml b/.azurepipeline= s/templates/pr-gate-steps.yml index 6601c247421b..70c19a462194 100644 --- a/.azurepipelines/templates/pr-gate-steps.yml +++ b/.azurepipelines/templates/pr-gate-steps.yml @@ -20,7 +20,7 @@ steps: =20 - task: UsePythonVersion@0 inputs: - versionSpec: '3.9.x' + versionSpec: '3.8.x' architecture: 'x64' =20 - script: pip install -r pip-requirements.txt --upgrade --=20 2.28.0.windows.1