diff options
author | Michael Kubacki <michael.kubacki@microsoft.com> | 2022-04-01 20:13:32 -0400 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2022-04-02 02:56:48 +0000 |
commit | 2268920afcf1b2710e6928cf1b657045d6437ad3 (patch) | |
tree | 8903053ca998153816a89133e594d29c4367c0b4 /.azurepipelines/templates/pr-gate-steps.yml | |
parent | 55637a2894babca97945eeca1da0d431f74f8627 (diff) | |
download | edk2-2268920afcf1b2710e6928cf1b657045d6437ad3.tar.gz |
.azurepipelines: Use Python 3.8
REF:https://bugzilla.tianocore.org/show_bug.cgi?id=3891
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 <sean.brogan@microsoft.com>
Cc: Bret Barkelew <Bret.Barkelew@microsoft.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
Reviewed-by: Sean Brogan <sean.brogan@microsoft.com>
Diffstat (limited to '.azurepipelines/templates/pr-gate-steps.yml')
-rw-r--r-- | .azurepipelines/templates/pr-gate-steps.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.azurepipelines/templates/pr-gate-steps.yml b/.azurepipelines/templates/pr-gate-steps.yml index 6601c24742..70c19a4621 100644 --- a/.azurepipelines/templates/pr-gate-steps.yml +++ b/.azurepipelines/templates/pr-gate-steps.yml @@ -20,7 +20,7 @@ steps: - task: UsePythonVersion@0
inputs:
- versionSpec: '3.9.x'
+ versionSpec: '3.8.x'
architecture: 'x64'
- script: pip install -r pip-requirements.txt --upgrade
|