public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH v1 1/1] .azurepipelines: Use Python 3.10.6+
@ 2022-08-25 15:36 Michael Kubacki
  2022-08-30  3:01 ` Michael D Kinney
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Kubacki @ 2022-08-25 15:36 UTC (permalink / raw)
  To: devel; +Cc: Sean Brogan, Bret Barkelew, Michael D Kinney, Liming Gao

From: Michael Kubacki <michael.kubacki@microsoft.com>

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>
---

Notes:
    Build results with this change are available
    in the following PR:
    https://github.com/tianocore/edk2/pull/3240

 .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/Ubuntu-PatchCheck.yml
index 1bc28176b6e8..b86d4bc3b93f 100644
--- a/.azurepipelines/Ubuntu-PatchCheck.yml
+++ b/.azurepipelines/Ubuntu-PatchCheck.yml
@@ -27,7 +27,7 @@ steps:
 
 - task: UsePythonVersion@0
   inputs:
-    versionSpec: '3.8.x'
+    versionSpec: '>=3.10.6'
     architecture: 'x64'
 
 - script: |
diff --git a/.azurepipelines/templates/platform-build-run-steps.yml b/.azurepipelines/templates/platform-build-run-steps.yml
index 97e7faa26682..40a31a509fc5 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 70c19a462194..cb431e53fcd1 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
-- 
2.28.0.windows.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v1 1/1] .azurepipelines: Use Python 3.10.6+
  2022-08-25 15:36 [PATCH v1 1/1] .azurepipelines: Use Python 3.10.6+ Michael Kubacki
@ 2022-08-30  3:01 ` Michael D Kinney
  0 siblings, 0 replies; 2+ messages in thread
From: Michael D Kinney @ 2022-08-30  3:01 UTC (permalink / raw)
  To: mikuback@linux.microsoft.com, devel@edk2.groups.io,
	Kinney, Michael D
  Cc: Sean Brogan, Barkelew, Bret, Gao, Liming

Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>

Mike 

> -----Original Message-----
> From: mikuback@linux.microsoft.com <mikuback@linux.microsoft.com>
> Sent: Thursday, August 25, 2022 8:37 AM
> To: devel@edk2.groups.io
> Cc: Sean Brogan <sean.brogan@microsoft.com>; Barkelew, Bret <bret.barkelew@microsoft.com>; Kinney, Michael D
> <michael.d.kinney@intel.com>; Gao, Liming <gaoliming@byosoft.com.cn>
> Subject: [PATCH v1 1/1] .azurepipelines: Use Python 3.10.6+
> 
> From: Michael Kubacki <michael.kubacki@microsoft.com>
> 
> 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>
> ---
> 
> Notes:
>     Build results with this change are available
>     in the following PR:
>     https://github.com/tianocore/edk2/pull/3240
> 
>  .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/Ubuntu-PatchCheck.yml
> index 1bc28176b6e8..b86d4bc3b93f 100644
> --- a/.azurepipelines/Ubuntu-PatchCheck.yml
> +++ b/.azurepipelines/Ubuntu-PatchCheck.yml
> @@ -27,7 +27,7 @@ steps:
> 
>  - task: UsePythonVersion@0
>    inputs:
> -    versionSpec: '3.8.x'
> +    versionSpec: '>=3.10.6'
>      architecture: 'x64'
> 
>  - script: |
> diff --git a/.azurepipelines/templates/platform-build-run-steps.yml b/.azurepipelines/templates/platform-build-run-steps.yml
> index 97e7faa26682..40a31a509fc5 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 70c19a462194..cb431e53fcd1 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
> --
> 2.28.0.windows.1


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-08-30  3:01 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-25 15:36 [PATCH v1 1/1] .azurepipelines: Use Python 3.10.6+ Michael Kubacki
2022-08-30  3:01 ` Michael D Kinney

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox