diff options
author | Michael Kubacki <michael.kubacki@microsoft.com> | 2022-08-25 11:03:29 -0400 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2022-08-30 23:46:21 +0000 |
commit | 383d34159d136f2dc923dfb6a722912b1af451b7 (patch) | |
tree | a2424024cb5ca4bbc1a4868a75b43208cde86d40 /.azurepipelines/templates | |
parent | 227a133a0a4357d9ce7cbf1c81dc4257a37ac616 (diff) | |
download | edk2-383d34159d136f2dc923dfb6a722912b1af451b7.tar.gz |
.azurepipelines: Use Python 3.10.6+
REF:https://bugzilla.tianocore.org/show_bug.cgi?id=3891
Changes the Python version used in pipelines to 3.10.6 or greater
since that version introduces a fix (bp0-47231) for inconsistent
trailing slashes in tarfile longname directories.
This is required for stuart_update to succeed when handling a
web_dependency (e.g. GCC ARM compilers).
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: Michael D Kinney <michael.d.kinney@intel.com>
Diffstat (limited to '.azurepipelines/templates')
-rw-r--r-- | .azurepipelines/templates/platform-build-run-steps.yml | 2 | ||||
-rw-r--r-- | .azurepipelines/templates/pr-gate-steps.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.azurepipelines/templates/platform-build-run-steps.yml b/.azurepipelines/templates/platform-build-run-steps.yml index 97e7faa266..40a31a509f 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.8.x"
+ versionSpec: ">=3.10.6"
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 70c19a4621..cb431e53fc 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.8.x'
+ versionSpec: '>=3.10.6'
architecture: 'x64'
- script: pip install -r pip-requirements.txt --upgrade
|