mirror of
https://github.com/actions/python-versions.git
synced 2025-04-05 06:49:39 +00:00
Support building free-threaded CPython (#319)
* 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.
This commit is contained in:
@ -151,6 +151,37 @@ class macOSPythonBuilder : NixPythonBuilder {
|
||||
return $pkgLocation
|
||||
}
|
||||
|
||||
[string] GetFrameworkName() {
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Get the Python installation Package name.
|
||||
#>
|
||||
|
||||
if ($this.IsFreeThreaded()) {
|
||||
return "PythonT.framework"
|
||||
} else {
|
||||
return "Python.framework"
|
||||
}
|
||||
}
|
||||
|
||||
[string] GetPkgChoices() {
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Reads the configuration XML file for the Python installer
|
||||
#>
|
||||
|
||||
$config = if ($this.IsFreeThreaded()) { "freethreaded" } else { "default" }
|
||||
$choicesFile = Join-Path $PSScriptRoot "../config/macos-pkg-choices-$($config).xml"
|
||||
$choicesTemplate = Get-Content -Path $choicesFile -Raw
|
||||
|
||||
$variablesToReplace = @{
|
||||
"{{__VERSION_MAJOR_MINOR__}}" = "$($this.Version.Major).$($this.Version.Minor)";
|
||||
}
|
||||
|
||||
$variablesToReplace.keys | ForEach-Object { $choicesTemplate = $choicesTemplate.Replace($_, $variablesToReplace[$_]) }
|
||||
return $choicesTemplate
|
||||
}
|
||||
|
||||
[void] CreateInstallationScriptPkg() {
|
||||
<#
|
||||
.SYNOPSIS
|
||||
@ -165,6 +196,8 @@ class macOSPythonBuilder : NixPythonBuilder {
|
||||
"{{__VERSION_FULL__}}" = $this.Version;
|
||||
"{{__PKG_NAME__}}" = $this.GetPkgName();
|
||||
"{{__ARCH__}}" = $this.Architecture;
|
||||
"{{__FRAMEWORK_NAME__}}" = $this.GetFrameworkName();
|
||||
"{{__PKG_CHOICES__}}" = $this.GetPkgChoices();
|
||||
}
|
||||
|
||||
$variablesToReplace.keys | ForEach-Object { $installationTemplateContent = $installationTemplateContent.Replace($_, $variablesToReplace[$_]) }
|
||||
|
Reference in New Issue
Block a user