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 | |
parent | 55637a2894babca97945eeca1da0d431f74f8627 (diff) | |
download | edk2-2268920afcf1b2710e6928cf1b657045d6437ad3.tar.gz edk2-2268920afcf1b2710e6928cf1b657045d6437ad3.tar.bz2 edk2-2268920afcf1b2710e6928cf1b657045d6437ad3.zip |
.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>
-rw-r--r-- | .azurepipelines/Ubuntu-PatchCheck.yml | 2 | ||||
-rw-r--r-- | .azurepipelines/templates/platform-build-run-steps.yml | 2 | ||||
-rw-r--r-- | .azurepipelines/templates/pr-gate-steps.yml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.azurepipelines/Ubuntu-PatchCheck.yml b/.azurepipelines/Ubuntu-PatchCheck.yml index d55c238592..1bc28176b6 100644 --- a/.azurepipelines/Ubuntu-PatchCheck.yml +++ b/.azurepipelines/Ubuntu-PatchCheck.yml @@ -27,7 +27,7 @@ steps: - task: UsePythonVersion@0
inputs:
- versionSpec: '3.9.x'
+ versionSpec: '3.8.x'
architecture: 'x64'
- script: |
diff --git a/.azurepipelines/templates/platform-build-run-steps.yml b/.azurepipelines/templates/platform-build-run-steps.yml index 36cdce9bf8..97e7faa266 100644 --- a/.azurepipelines/templates/platform-build-run-steps.yml +++ b/.azurepipelines/templates/platform-build-run-steps.yml @@ -42,7 +42,7 @@ steps: - task: UsePythonVersion@0
inputs:
- versionSpec: "3.9.x"
+ versionSpec: "3.8.x"
architecture: "x64"
- script: pip install -r pip-requirements.txt --upgrade
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
|