mirror of
https://github.com/actions/python-versions.git
synced 2025-04-05 06:49:39 +00:00
mplement script to build and prepare packages for Python
This commit is contained in:
97
builders/python-builder.psm1
Normal file
97
builders/python-builder.psm1
Normal file
@ -0,0 +1,97 @@
|
||||
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.
|
||||
|
||||
#>
|
||||
|
||||
[version] $Version
|
||||
[string] $Architecture
|
||||
[string] $Platform
|
||||
[string] $HostedToolcacheLocation
|
||||
[string] $TempFolderLocation
|
||||
[string] $WorkFolderLocation
|
||||
[string] $ArtifactFolderLocation
|
||||
[string] $InstallationTemplatesLocation
|
||||
|
||||
PythonBuilder ([version] $version, [string] $architecture, [string] $platform) {
|
||||
$this.Version = $version
|
||||
$this.Architecture = $architecture
|
||||
$this.Platform = $platform
|
||||
|
||||
$this.HostedToolcacheLocation = $env:AGENT_TOOLSDIRECTORY
|
||||
$this.TempFolderLocation = $env:BUILD_SOURCESDIRECTORY
|
||||
$this.WorkFolderLocation = $env:BUILD_BINARIESDIRECTORY
|
||||
$this.ArtifactFolderLocation = $env:BUILD_STAGINGDIRECTORY
|
||||
|
||||
$this.InstallationTemplatesLocation = Join-Path -Path $PSScriptRoot -ChildPath "../installers"
|
||||
}
|
||||
|
||||
[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)"
|
||||
}
|
||||
|
||||
[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
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user