mirror of
https://github.com/actions/versions-package-tools.git
synced 2025-12-10 19:50:24 +00:00
* setup boost helpers * add ci for pull requests * pester for ci * resolving issue with pester 5 * remove Output flag * check tests with 4 version * try common tests variant * added requires * move to 5 version * try to add assert module * fix scope * use new regex for python * fix regex in tests * Pester 4.10.1 * EnableExit * fix synopsys * fix creating tar archive Co-authored-by: Dmitry Shibanov <v-dmshib@microsoft.com> Co-authored-by: Maxim Lobanov <v-malob@microsoft.com>
39 lines
994 B
PowerShell
39 lines
994 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
Unpack *.7z file
|
|
#>
|
|
function Extract-SevenZipArchive {
|
|
param(
|
|
[Parameter(Mandatory=$true)]
|
|
[String]$ArchivePath,
|
|
[Parameter(Mandatory=$true)]
|
|
[String]$OutputDirectory
|
|
)
|
|
|
|
Write-Debug "Extract $ArchivePath to $OutputDirectory"
|
|
7z x $ArchivePath -o"$OutputDirectory" -y | Out-Null
|
|
}
|
|
|
|
function Create-SevenZipArchive {
|
|
param(
|
|
[Parameter(Mandatory=$true)]
|
|
[String]$SourceFolder,
|
|
[Parameter(Mandatory=$true)]
|
|
[String]$ArchivePath,
|
|
[String]$ArchiveType = "zip",
|
|
[String]$CompressionLevel = 5,
|
|
[switch]$IncludeSymlinks
|
|
)
|
|
|
|
$ArchiveTypeArguments = @(
|
|
"-t${ArchiveType}",
|
|
"-mx=${CompressionLevel}"
|
|
)
|
|
if ($IncludeSymlinks) {
|
|
$ArchiveTypeArguments += "-snl"
|
|
}
|
|
Push-Location $SourceFolder
|
|
Write-Debug "7z a $ArchiveTypeArgument $ArchivePath @$SourceFolder"
|
|
7z a @ArchiveTypeArguments $ArchivePath $SourceFolder\*
|
|
Pop-Location
|
|
} |