mirror of
https://github.com/actions/python-versions.git
synced 2025-04-04 14:29:38 +00:00
* Support building free-threaded CPython Add support for Python's free threading build mode where the global interpreter lock is disabled. The packages are marked using a suffix on the architecture, like 'x64-freethreaded' or 'arm64-freethreaded'. * Match '-freethreaded' in arch * Use type 'string' instead of 'str' * On Linux, only delete Python installations with the same architecture. This matches the macOS behavior and allows users to install both the free-threading and default builds at the same time.
132 lines
3.9 KiB
PowerShell
132 lines
3.9 KiB
PowerShell
class PythonBuilder {
|
|
<#
|
|
.SYNOPSIS
|
|
Base Python builder class.
|
|
|
|
.DESCRIPTION
|
|
Base Python builder class that contains general builder methods.
|
|
|
|
.PARAMETER Version
|
|
The version of Python that should be built.
|
|
|
|
.PARAMETER Architecture
|
|
The architecture with which Python should be built.
|
|
|
|
.PARAMETER HostedToolcacheLocation
|
|
The location of hostedtoolcache artifacts. Using system AGENT_TOOLSDIRECTORY variable value.
|
|
|
|
.PARAMETER TempFolderLocation
|
|
The location of temporary files that will be used during Python generation. Using system TEMP directory.
|
|
|
|
.PARAMETER WorkFolderLocation
|
|
The location of generated Python artifact. Using system environment BUILD_STAGINGDIRECTORY variable value.
|
|
|
|
.PARAMETER ArtifactFolderLocation
|
|
The location of generated Python artifact. Using system environment BUILD_BINARIESDIRECTORY variable value.
|
|
|
|
.PARAMETER InstallationTemplatesLocation
|
|
The location of installation script template. Using "installers" folder from current repository.
|
|
|
|
#>
|
|
|
|
[semver] $Version
|
|
[string] $Architecture
|
|
[string] $Platform
|
|
[string] $HostedToolcacheLocation
|
|
[string] $TempFolderLocation
|
|
[string] $WorkFolderLocation
|
|
[string] $ArtifactFolderLocation
|
|
[string] $InstallationTemplatesLocation
|
|
|
|
PythonBuilder ([semver] $version, [string] $architecture, [string] $platform) {
|
|
$this.InstallationTemplatesLocation = Join-Path -Path $PSScriptRoot -ChildPath "../installers"
|
|
|
|
$artifactDirectory = Join-Path $env:RUNNER_TEMP "artifact"
|
|
$workDirectory = Join-Path $env:RUNNER_TEMP "work"
|
|
|
|
New-Item -Force -Type Directory $artifactDirectory
|
|
New-Item -Force -Type Directory $workDirectory
|
|
|
|
$this.HostedToolcacheLocation = $env:RUNNER_TOOL_CACHE
|
|
$this.TempFolderLocation = $env:RUNNER_TEMP
|
|
$this.WorkFolderLocation = $workDirectory
|
|
$this.ArtifactFolderLocation = $artifactDirectory
|
|
|
|
$this.Version = $version
|
|
$this.Architecture = $architecture
|
|
$this.Platform = $platform
|
|
}
|
|
|
|
[uri] GetBaseUri() {
|
|
<#
|
|
.SYNOPSIS
|
|
Return base URI for Python build sources.
|
|
#>
|
|
|
|
return "https://www.python.org/ftp/python"
|
|
}
|
|
|
|
[string] GetPythonToolcacheLocation() {
|
|
<#
|
|
.SYNOPSIS
|
|
Return path to Python hostedtoolcache folder.
|
|
#>
|
|
|
|
return "$($this.HostedToolcacheLocation)/Python"
|
|
}
|
|
|
|
[string] GetFullPythonToolcacheLocation() {
|
|
<#
|
|
.SYNOPSIS
|
|
Return full path to hostedtoolcache Python folder.
|
|
#>
|
|
|
|
$pythonToolcacheLocation = $this.GetPythonToolcacheLocation()
|
|
return "$pythonToolcacheLocation/$($this.Version)/$($this.Architecture)"
|
|
}
|
|
|
|
[string] GetBaseVersion() {
|
|
<#
|
|
.SYNOPSIS
|
|
Return Major.Minor.Patch version string.
|
|
#>
|
|
|
|
return "$($this.Version.Major).$($this.Version.Minor).$($this.Version.Patch)"
|
|
}
|
|
|
|
[string] GetHardwareArchitecture() {
|
|
<#
|
|
.SYNOPSIS
|
|
The hardware architecture (x64, arm64) without any Python free threading suffix.
|
|
#>
|
|
|
|
return $this.Architecture.Replace("-freethreaded", "")
|
|
}
|
|
|
|
[bool] IsFreeThreaded() {
|
|
<#
|
|
.SYNOPSIS
|
|
Check if Python version is free threaded.
|
|
#>
|
|
|
|
return $this.Architecture.EndsWith("-freethreaded")
|
|
}
|
|
|
|
[void] PreparePythonToolcacheLocation() {
|
|
<#
|
|
.SYNOPSIS
|
|
Prepare system hostedtoolcache folder for new Python version.
|
|
#>
|
|
|
|
$pythonBinariesLocation = $this.GetFullPythonToolcacheLocation()
|
|
|
|
if (Test-Path $pythonBinariesLocation) {
|
|
Write-Host "Purge $pythonBinariesLocation folder..."
|
|
Remove-Item $pythonBinariesLocation -Recurse -Force
|
|
} else {
|
|
Write-Host "Create $pythonBinariesLocation folder..."
|
|
New-Item -ItemType Directory -Path $pythonBinariesLocation
|
|
}
|
|
}
|
|
}
|