mirror of
https://github.com/actions/python-versions.git
synced 2025-04-06 15:29:39 +00:00
50 lines
1.2 KiB
PowerShell
50 lines
1.2 KiB
PowerShell
<#
|
|
.SYNOPSIS
|
|
Pack folder to *.zip format
|
|
#>
|
|
function Pack-Zip {
|
|
param(
|
|
[Parameter(Mandatory=$true)]
|
|
[String]$PathToArchive,
|
|
[Parameter(Mandatory=$true)]
|
|
[String]$ToolZipFile
|
|
)
|
|
|
|
Write-Debug "Pack $PathToArchive to $ToolZipFile"
|
|
Push-Location -Path $PathToArchive
|
|
zip -q -r $ToolZipFile * | Out-Null
|
|
Pop-Location
|
|
}
|
|
|
|
<#
|
|
.SYNOPSIS
|
|
Unpack *.tar file
|
|
#>
|
|
function Extract-TarArchive {
|
|
param(
|
|
[Parameter(Mandatory=$true)]
|
|
[String]$ArchivePath,
|
|
[Parameter(Mandatory=$true)]
|
|
[String]$OutputDirectory
|
|
)
|
|
|
|
Write-Debug "tar -C $OutputDirectory -xzf $ArchivePath --strip 1"
|
|
tar -C $OutputDirectory -xzf $ArchivePath --strip 1
|
|
}
|
|
|
|
function Create-TarArchive {
|
|
param(
|
|
[Parameter(Mandatory=$true)]
|
|
[String]$SourceFolder,
|
|
[Parameter(Mandatory=$true)]
|
|
[String]$ArchivePath,
|
|
[string]$CompressionType = "gz"
|
|
)
|
|
|
|
$CompressionTypeArgument = If ([string]::IsNullOrWhiteSpace($CompressionType)) { "" } else { "--${CompressionType}" }
|
|
|
|
Push-Location $SourceFolder
|
|
Write-Debug "tar -c $CompressionTypeArgument -f $ArchivePath ."
|
|
tar -c $CompressionTypeArgument -f $ArchivePath .
|
|
Pop-Location
|
|
} |