2020-03-25 02:08:37 +08:00
# Copyright (c) Microsoft Corporation.
2018-02-14 01:23:53 +08:00
# Licensed under the MIT License.
2020-05-29 08:31:56 +08:00
param (
# Skips a check that prevents building PowerShell on unsupported Linux distributions
[ parameter ( Mandatory = $false ) ] [ switch ] $SkipLinuxDistroCheck = $false
)
2021-10-29 02:44:06 +08:00
. " $PSScriptRoot \tools\buildCommon\startNativeExecution.ps1 "
2022-08-04 03:29:23 +08:00
# CI runs with PowerShell 5.0, so don't use features like ?: && ||
2020-02-04 01:44:10 +08:00
Set-StrictMode -Version 3.0
2017-07-24 03:29:33 +08:00
# On Unix paths is separated by colon
# On Windows paths is separated by semicolon
$script:TestModulePathSeparator = [ System.IO.Path ] :: PathSeparator
2020-02-04 01:44:10 +08:00
$script:Options = $null
2016-02-22 08:21:04 +08:00
2021-07-08 01:10:40 +08:00
$dotnetMetadata = Get-Content $PSScriptRoot / DotnetRuntimeMetadata . json | ConvertFrom-Json
$dotnetCLIChannel = $dotnetMetadata . Sdk . Channel
$dotnetCLIQuality = $dotnetMetadata . Sdk . Quality
2021-10-29 02:40:52 +08:00
$dotnetAzureFeed = $dotnetMetadata . Sdk . azureFeed
$dotnetSDKVersionOveride = $dotnetMetadata . Sdk . sdkImageOverride
2017-11-10 08:28:39 +08:00
$dotnetCLIRequiredVersion = $ ( Get-Content $PSScriptRoot / global . json | ConvertFrom-Json ) . Sdk . Version
2017-06-22 00:32:06 +08:00
2017-08-02 05:35:50 +08:00
# Track if tags have been sync'ed
$tagsUpToDate = $false
# Sync Tags
# When not using a branch in PowerShell/PowerShell, tags will not be fetched automatically
# Since code that uses Get-PSCommitID and Get-PSLatestTag assume that tags are fetched,
# This function can ensure that tags have been fetched.
2019-02-20 09:47:35 +08:00
# This function is used during the setup phase in tools/ci.psm1
2017-08-02 05:35:50 +08:00
function Sync-PSTags
{
param (
[ Switch ]
$AddRemoteIfMissing
)
2021-07-17 05:48:17 +08:00
$powerShellRemoteUrls = @ (
'https://github.com/PowerShell/PowerShell'
'git@github.com:PowerShell/PowerShell'
)
$defaultRemoteUrl = " $( $powerShellRemoteUrls [ 0 ] ) .git "
2017-08-02 05:35:50 +08:00
$upstreamRemoteDefaultName = 'upstream'
$remotes = Start-NativeExecution { git - -git -dir = " $PSScriptRoot /.git " remote }
$upstreamRemote = $null
foreach ( $remote in $remotes )
{
$url = Start-NativeExecution { git - -git -dir = " $PSScriptRoot /.git " remote get-url $remote }
2021-07-17 05:48:17 +08:00
if ( $url . EndsWith ( '.git' ) ) { $url = $url . Substring ( 0 , $url . Length - 4 ) }
if ( $url -in $powerShellRemoteUrls )
2017-08-02 05:35:50 +08:00
{
$upstreamRemote = $remote
break
}
}
if ( ! $upstreamRemote -and $AddRemoteIfMissing . IsPresent -and $remotes -notcontains $upstreamRemoteDefaultName )
{
2021-07-17 05:48:17 +08:00
$null = Start-NativeExecution { git - -git -dir = " $PSScriptRoot /.git " remote add $upstreamRemoteDefaultName $defaultRemoteUrl }
2017-08-02 05:35:50 +08:00
$upstreamRemote = $upstreamRemoteDefaultName
}
elseif ( ! $upstreamRemote )
{
2021-07-17 05:48:17 +08:00
Write-Error " Please add a remote to PowerShell\PowerShell. Example: git remote add $upstreamRemoteDefaultName $defaultRemoteUrl " -ErrorAction Stop
2017-08-02 05:35:50 +08:00
}
$null = Start-NativeExecution { git - -git -dir = " $PSScriptRoot /.git " fetch - -tags - -quiet $upstreamRemote }
$script:tagsUpToDate = $true
}
# Gets the latest tag for the current branch
function Get-PSLatestTag
{
2017-09-07 06:20:25 +08:00
[ CmdletBinding ( ) ]
param ( )
2017-08-02 05:35:50 +08:00
# This function won't always return the correct value unless tags have been sync'ed
# So, Write a warning to run Sync-PSTags
if ( ! $tagsUpToDate )
{
Write-Warning " Run Sync-PSTags to update tags "
}
return ( Start-NativeExecution { git - -git -dir = " $PSScriptRoot /.git " describe - -abbrev = 0 } )
}
function Get-PSVersion
{
2017-09-07 06:20:25 +08:00
[ CmdletBinding ( ) ]
2017-08-02 05:35:50 +08:00
param (
[ switch ]
$OmitCommitId
)
if ( $OmitCommitId . IsPresent )
{
return ( Get-PSLatestTag ) -replace '^v'
}
else
{
return ( Get-PSCommitId ) -replace '^v'
}
}
function Get-PSCommitId
{
2017-09-07 06:20:25 +08:00
[ CmdletBinding ( ) ]
param ( )
2017-08-02 05:35:50 +08:00
# This function won't always return the correct value unless tags have been sync'ed
# So, Write a warning to run Sync-PSTags
if ( ! $tagsUpToDate )
{
Write-Warning " Run Sync-PSTags to update tags "
}
return ( Start-NativeExecution { git - -git -dir = " $PSScriptRoot /.git " describe - -dirty - -abbrev = 60 } )
}
2017-07-24 03:29:33 +08:00
function Get-EnvironmentInformation
2016-09-16 10:22:18 +08:00
{
2020-01-16 03:03:48 +08:00
$environment = @ { 'IsWindows' = [ System.Environment ] :: OSVersion . Platform -eq [ System.PlatformID ] :: Win32NT }
2019-05-11 06:34:27 +08:00
# PowerShell will likely not be built on pre-1709 nanoserver
2020-01-16 03:03:48 +08:00
if ( 'System.Management.Automation.Platform' -as [ type ] ) {
$environment + = @ { 'IsCoreCLR' = [ System.Management.Automation.Platform ] :: IsCoreCLR }
$environment + = @ { 'IsLinux' = [ System.Management.Automation.Platform ] :: IsLinux }
$environment + = @ { 'IsMacOS' = [ System.Management.Automation.Platform ] :: IsMacOS }
2017-12-02 19:39:04 +08:00
} else {
2017-07-25 06:26:04 +08:00
$environment + = @ { 'IsCoreCLR' = $false }
$environment + = @ { 'IsLinux' = $false }
2017-09-08 01:34:40 +08:00
$environment + = @ { 'IsMacOS' = $false }
2017-07-24 03:29:33 +08:00
}
2020-01-16 03:03:48 +08:00
if ( $environment . IsWindows )
2017-07-24 03:29:33 +08:00
{
$environment + = @ { 'IsAdmin' = ( New-Object Security . Principal . WindowsPrincipal ( [ Security.Principal.WindowsIdentity ] :: GetCurrent ( ) ) ) . IsInRole ( [ Security.Principal.WindowsBuiltinRole ] :: Administrator ) }
2021-07-20 07:06:39 +08:00
$environment + = @ { 'nugetPackagesRoot' = " ${env:USERPROFILE} \.nuget\packages " , " ${env:NUGET_PACKAGES} " }
2017-07-24 03:29:33 +08:00
}
else
{
$environment + = @ { 'nugetPackagesRoot' = " ${env:HOME} /.nuget/packages " }
}
2020-01-16 03:03:48 +08:00
if ( $environment . IsMacOS ) {
2019-10-10 06:02:05 +08:00
$environment + = @ { 'UsingHomebrew' = [ bool ] ( Get-Command brew -ErrorAction ignore ) }
$environment + = @ { 'UsingMacports' = [ bool ] ( Get-Command port -ErrorAction ignore ) }
2021-07-17 05:48:17 +08:00
$environment + = @ {
'OSArchitecture' = if ( ( uname -v ) -match 'ARM64' ) { 'arm64' } else { 'x64' }
}
2019-10-10 06:02:05 +08:00
if ( -not ( $environment . UsingHomebrew -or $environment . UsingMacports ) ) {
throw " Neither Homebrew nor MacPorts is installed on this system, visit https://brew.sh/ or https://www.macports.org/ to continue "
}
}
2020-01-16 03:03:48 +08:00
if ( $environment . IsLinux ) {
2017-07-24 03:29:33 +08:00
$LinuxInfo = Get-Content / etc / os-release -Raw | ConvertFrom-StringData
2019-12-28 09:14:51 +08:00
$lsb_release = Get-Command lsb_release -Type Application -ErrorAction Ignore | Select-Object -First 1
2019-11-27 07:27:06 +08:00
if ( $lsb_release ) {
$LinuxID = & $lsb_release -is
}
else {
$LinuxID = " "
}
2016-09-16 10:22:18 +08:00
2017-07-24 03:29:33 +08:00
$environment + = @ { 'LinuxInfo' = $LinuxInfo }
2019-04-27 05:11:56 +08:00
$environment + = @ { 'IsDebian' = $LinuxInfo . ID -match 'debian' -or $LinuxInfo . ID -match 'kali' }
2020-01-16 03:03:48 +08:00
$environment + = @ { 'IsDebian9' = $environment . IsDebian -and $LinuxInfo . VERSION_ID -match '9' }
$environment + = @ { 'IsDebian10' = $environment . IsDebian -and $LinuxInfo . VERSION_ID -match '10' }
$environment + = @ { 'IsDebian11' = $environment . IsDebian -and $LinuxInfo . PRETTY_NAME -match 'bullseye' }
2019-11-27 07:27:06 +08:00
$environment + = @ { 'IsUbuntu' = $LinuxInfo . ID -match 'ubuntu' -or $LinuxID -match 'Ubuntu' }
2020-01-16 03:03:48 +08:00
$environment + = @ { 'IsUbuntu16' = $environment . IsUbuntu -and $LinuxInfo . VERSION_ID -match '16.04' }
$environment + = @ { 'IsUbuntu18' = $environment . IsUbuntu -and $LinuxInfo . VERSION_ID -match '18.04' }
2020-11-06 10:14:12 +08:00
$environment + = @ { 'IsUbuntu20' = $environment . IsUbuntu -and $LinuxInfo . VERSION_ID -match '20.04' }
2017-07-24 03:29:33 +08:00
$environment + = @ { 'IsCentOS' = $LinuxInfo . ID -match 'centos' -and $LinuxInfo . VERSION_ID -match '7' }
$environment + = @ { 'IsFedora' = $LinuxInfo . ID -match 'fedora' -and $LinuxInfo . VERSION_ID -ge 24 }
$environment + = @ { 'IsOpenSUSE' = $LinuxInfo . ID -match 'opensuse' }
2018-01-23 06:58:17 +08:00
$environment + = @ { 'IsSLES' = $LinuxInfo . ID -match 'sles' }
2018-08-15 04:21:26 +08:00
$environment + = @ { 'IsRedHat' = $LinuxInfo . ID -match 'rhel' }
2020-01-16 03:03:48 +08:00
$environment + = @ { 'IsRedHat7' = $environment . IsRedHat -and $LinuxInfo . VERSION_ID -match '7' }
$environment + = @ { 'IsOpenSUSE13' = $environment . IsOpenSUSE -and $LinuxInfo . VERSION_ID -match '13' }
$environment + = @ { 'IsOpenSUSE42.1' = $environment . IsOpenSUSE -and $LinuxInfo . VERSION_ID -match '42.1' }
$environment + = @ { 'IsDebianFamily' = $environment . IsDebian -or $environment . IsUbuntu }
$environment + = @ { 'IsRedHatFamily' = $environment . IsCentOS -or $environment . IsFedora -or $environment . IsRedHat }
$environment + = @ { 'IsSUSEFamily' = $environment . IsSLES -or $environment . IsOpenSUSE }
2018-11-28 02:45:49 +08:00
$environment + = @ { 'IsAlpine' = $LinuxInfo . ID -match 'alpine' }
2017-07-24 03:29:33 +08:00
# Workaround for temporary LD_LIBRARY_PATH hack for Fedora 24
# https://github.com/PowerShell/PowerShell/issues/2511
if ( $environment . IsFedora -and ( Test-Path ENV : \ LD_LIBRARY_PATH ) ) {
Remove-Item -Force ENV : \ LD_LIBRARY_PATH
Get-ChildItem ENV :
}
2018-08-15 04:21:26 +08:00
if ( -not (
$environment . IsDebian -or
$environment . IsUbuntu -or
2018-08-17 07:44:20 +08:00
$environment . IsRedHatFamily -or
2018-11-28 02:45:49 +08:00
$environment . IsSUSEFamily -or
$environment . IsAlpine )
2018-08-15 04:21:26 +08:00
) {
2020-05-29 08:31:56 +08:00
if ( $SkipLinuxDistroCheck ) {
Write-Warning " The current OS : $( $LinuxInfo . ID ) is not supported for building PowerShell. "
} else {
throw " The current OS : $( $LinuxInfo . ID ) is not supported for building PowerShell. Import this module with '-ArgumentList `$ true' to bypass this check. "
}
2018-08-15 04:21:26 +08:00
}
2017-01-07 02:04:18 +08:00
}
2017-07-24 03:29:33 +08:00
return [ PSCustomObject ] $environment
2016-06-21 02:39:39 +08:00
}
2020-01-16 03:03:48 +08:00
$environment = Get-EnvironmentInformation
2017-07-24 03:29:33 +08:00
2017-03-27 12:46:39 +08:00
# Autoload (in current session) temporary modules used in our tests
$TestModulePath = Join-Path $PSScriptRoot " test/tools/Modules "
2018-05-09 00:20:39 +08:00
if ( -not $env:PSModulePath . Contains ( $TestModulePath ) ) {
2017-03-27 12:46:39 +08:00
$env:PSModulePath = $TestModulePath + $TestModulePathSeparator + $ ( $env:PSModulePath )
}
2018-06-19 06:54:11 +08:00
<#
. Synopsis
Tests if a version is preview
. EXAMPLE
Test-IsPreview -version '6.1.0-sometthing' # returns true
Test-IsPreview -version '6.1.0' # returns false
#>
function Test-IsPreview
{
param (
[ parameter ( Mandatory ) ]
[ string ]
2020-02-20 07:07:11 +08:00
$Version ,
[ switch ] $IsLTS
2018-06-19 06:54:11 +08:00
)
2020-02-20 07:07:11 +08:00
if ( $IsLTS . IsPresent ) {
## If we are building a LTS package, then never consider it preview.
return $false
}
2018-06-19 06:54:11 +08:00
return $Version -like '*-*'
}
2019-12-03 09:52:23 +08:00
<#
. Synopsis
Tests if a version is a Release Candidate
. EXAMPLE
Test-IsReleaseCandidate -version '6.1.0-sometthing' # returns false
Test-IsReleaseCandidate -version '6.1.0-rc.1' # returns true
Test-IsReleaseCandidate -version '6.1.0' # returns false
#>
function Test-IsReleaseCandidate
{
param (
[ parameter ( Mandatory ) ]
[ string ]
$Version
)
if ( $Version -like '*-rc.*' )
{
return $true
}
return $false
}
2022-04-22 00:46:28 +08:00
$optimizedFddRegex = 'fxdependent-(linux|alpine|win|win7|osx)-(x64|x86|arm64|arm)'
2016-04-02 05:41:13 +08:00
function Start-PSBuild {
2018-10-04 03:49:24 +08:00
[ CmdletBinding ( DefaultParameterSetName = " Default " ) ]
2016-02-22 07:06:39 +08:00
param (
2016-07-20 10:09:06 +08:00
# When specified this switch will stops running dev powershell
# to help avoid compilation error, because file are in use.
[ switch ] $StopDevPowerShell ,
2016-02-24 08:21:00 +08:00
[ switch ] $Restore ,
2018-10-30 08:43:41 +08:00
# Accept a path to the output directory
# When specified, --output <path> will be passed to dotnet
2016-05-07 01:28:45 +08:00
[ string ] $Output ,
2016-06-15 18:42:54 +08:00
[ switch ] $ResGen ,
2016-06-18 02:23:29 +08:00
[ switch ] $TypeGen ,
2016-06-23 10:46:16 +08:00
[ switch ] $Clean ,
2018-10-04 03:49:24 +08:00
[ Parameter ( ParameterSetName = " Legacy " ) ]
2016-11-19 01:55:23 +08:00
[ switch ] $PSModuleRestore ,
2018-10-04 03:49:24 +08:00
[ Parameter ( ParameterSetName = " Default " ) ]
[ switch ] $NoPSModuleRestore ,
2017-12-05 09:16:53 +08:00
[ switch ] $CI ,
2021-03-13 05:25:30 +08:00
[ switch ] $ForMinimalSize ,
2016-03-12 08:19:05 +08:00
2019-10-18 05:43:46 +08:00
# Skips the step where the pwsh that's been built is used to create a configuration
# Useful when changing parsing/compilation, since bugs there can mean we can't get past this step
[ switch ] $SkipExperimentalFeatureGeneration ,
2016-08-27 04:46:03 +08:00
# this switch will re-build only System.Management.Automation.dll
2016-07-20 03:51:11 +08:00
# it's useful for development, to do a quick changes in the engine
[ switch ] $SMAOnly ,
2016-03-04 07:54:52 +08:00
# These runtimes must match those in project.json
# We do not use ValidateScript since we want tab completion
2017-11-16 02:52:06 +08:00
# If this parameter is not provided it will get determined automatically.
2018-12-06 02:55:09 +08:00
[ ValidateSet ( " alpine-x64 " ,
" fxdependent " ,
2022-04-22 00:46:28 +08:00
" fxdependent-linux-x64 " ,
2019-07-13 08:18:11 +08:00
" fxdependent-win-desktop " ,
2018-09-11 03:47:32 +08:00
" linux-arm " ,
2018-12-06 02:55:09 +08:00
" linux-arm64 " ,
2017-09-19 00:31:07 +08:00
" linux-x64 " ,
2021-03-10 04:09:31 +08:00
" osx-arm64 " ,
2018-06-28 06:30:38 +08:00
" osx-x64 " ,
2017-12-09 07:43:53 +08:00
" win-arm " ,
2018-06-28 06:30:38 +08:00
" win-arm64 " ,
" win7-x64 " ,
" win7-x86 " ) ]
2016-03-12 08:19:05 +08:00
[ string ] $Runtime ,
2018-05-15 06:01:44 +08:00
[ ValidateSet ( 'Debug' , 'Release' , 'CodeCoverage' , '' ) ] # We might need "Checked" as well
2016-07-30 01:00:46 +08:00
[ string ] $Configuration ,
2021-03-24 02:03:05 +08:00
[ ValidatePattern ( " ^v\d+\.\d+\.\d+(-\w+(\.\d{1,2})?)? $ " ) ]
2017-06-06 01:21:28 +08:00
[ ValidateNotNullOrEmpty ( ) ]
2019-04-17 05:14:29 +08:00
[ string ] $ReleaseTag ,
2020-08-14 05:52:00 +08:00
[ switch ] $Detailed ,
2021-07-07 11:50:35 +08:00
[ switch ] $InteractiveAuth ,
2021-10-13 06:40:43 +08:00
[ switch ] $SkipRoslynAnalyzers ,
[ string ] $PSOptionsPath
2016-02-24 08:21:00 +08:00
)
2016-02-22 07:06:39 +08:00
2021-03-24 02:03:05 +08:00
if ( $ReleaseTag -and $ReleaseTag -notmatch " ^v\d+\.\d+\.\d+(-(preview|rc)(\.\d{1,2})?)? $ " ) {
Write-Warning " Only preview or rc are supported for releasing pre-release version of PowerShell "
}
2020-01-14 03:19:12 +08:00
if ( $PSCmdlet . ParameterSetName -eq " Default " -and ! $NoPSModuleRestore )
2018-10-04 03:49:24 +08:00
{
$PSModuleRestore = $true
}
2020-02-04 01:44:10 +08:00
if ( $Runtime -eq " linux-arm " -and $environment . IsLinux -and -not $environment . IsUbuntu ) {
2017-09-26 03:49:43 +08:00
throw " Cross compiling for linux-arm is only supported on Ubuntu environment "
}
2020-01-16 03:03:48 +08:00
if ( " win-arm " , " win-arm64 " -contains $Runtime -and -not $environment . IsWindows ) {
2017-12-09 07:43:53 +08:00
throw " Cross compiling for win-arm or win-arm64 is only supported on Windows environment "
}
2021-03-13 05:25:30 +08:00
if ( $ForMinimalSize ) {
if ( $Runtime -and " linux-x64 " , " win7-x64 " , " osx-x64 " -notcontains $Runtime ) {
throw " Build for the minimal size is enabled only for following runtimes: 'linux-x64', 'win7-x64', 'osx-x64' "
}
}
2016-08-04 04:23:21 +08:00
function Stop-DevPowerShell {
2017-10-25 07:28:22 +08:00
Get-Process pwsh * |
2016-08-04 04:23:21 +08:00
Where-Object {
$_ . Modules |
Where-Object {
2016-07-20 10:09:06 +08:00
$_ . FileName -eq ( Resolve-Path $script:Options . Output ) . Path
2016-08-04 04:23:21 +08:00
}
} |
2016-07-20 10:09:06 +08:00
Stop-Process -Verbose
}
2016-08-04 04:23:21 +08:00
if ( $Clean ) {
2020-06-19 02:48:06 +08:00
Write-Log -message " Cleaning your working directory. You can also do it with 'git clean -fdX --exclude .vs/PowerShell/v16/Server/sqlite3' "
2016-07-26 10:53:21 +08:00
Push-Location $PSScriptRoot
2016-08-04 04:23:21 +08:00
try {
2018-07-10 01:16:56 +08:00
# Excluded sqlite3 folder is due to this Roslyn issue: https://github.com/dotnet/roslyn/issues/23060
2018-11-06 02:48:05 +08:00
# Excluded src/Modules/nuget.config as this is required for release build.
2020-12-15 06:16:55 +08:00
# Excluded nuget.config as this is required for release build.
git clean -fdX - -exclude . vs / PowerShell / v16 / Server / sqlite3 - -exclude src / Modules / nuget . config - -exclude nuget . config
2016-08-04 04:23:21 +08:00
} finally {
2016-07-26 10:53:21 +08:00
Pop-Location
}
2016-06-23 10:46:16 +08:00
}
2016-06-21 02:59:14 +08:00
# Add .NET CLI tools to PATH
Find-Dotnet
2016-04-14 07:41:50 +08:00
2020-08-18 13:22:29 +08:00
# Verify we have git in place to do the build, and abort if the precheck failed
$precheck = precheck 'git' " Build dependency 'git' not found in PATH. See <URL: https://docs.github.com/en/github/getting-started-with-github/set-up-git#setting-up-git > "
if ( -not $precheck ) {
return
}
2017-09-26 03:49:43 +08:00
# Verify we have .NET SDK in place to do the build, and abort if the precheck failed
2020-08-18 13:22:29 +08:00
$precheck = precheck 'dotnet' " Build dependency 'dotnet' not found in PATH. Run Start-PSBootstrap. Also see <URL: https://dotnet.github.io/getting-started/ > "
2017-07-26 07:50:27 +08:00
if ( -not $precheck ) {
return
}
# Verify if the dotnet in-use is the required version
2022-05-12 00:49:43 +08:00
$dotnetCLIInstalledVersion = Find-RequiredSDK $dotnetCLIRequiredVersion
2021-10-29 02:40:52 +08:00
2017-07-26 07:50:27 +08:00
If ( $dotnetCLIInstalledVersion -ne $dotnetCLIRequiredVersion ) {
2017-06-22 00:32:06 +08:00
Write-Warning @"
The currently installed . NET Command Line Tools is not the required version .
2017-07-08 00:43:37 +08:00
Installed version : $dotnetCLIInstalledVersion
2017-06-22 00:32:06 +08:00
Required version : $dotnetCLIRequiredVersion
Fix steps :
1 . Remove the installed version from :
- on windows '`$env:LOCALAPPDATA\Microsoft\dotnet'
2017-09-08 01:34:40 +08:00
- on macOS and linux '`$env:HOME/.dotnet'
2017-06-22 00:32:06 +08:00
2 . Run Start-PSBootstrap or Install-Dotnet
3 . Start-PSBuild -Clean
` n
" @
return
}
2016-04-15 06:06:14 +08:00
# set output options
2016-07-20 03:51:11 +08:00
$OptionsArguments = @ {
Output = $Output
Runtime = $Runtime
Configuration = $Configuration
Verbose = $true
SMAOnly = [ bool ] $SMAOnly
2017-11-03 04:52:17 +08:00
PSModuleRestore = $PSModuleRestore
2021-03-13 05:25:30 +08:00
ForMinimalSize = $ForMinimalSize
2016-07-20 03:51:11 +08:00
}
2016-04-15 06:06:14 +08:00
$script:Options = New-PSOptions @OptionsArguments
2016-04-02 08:51:38 +08:00
2016-08-04 04:23:21 +08:00
if ( $StopDevPowerShell ) {
2016-07-20 10:09:06 +08:00
Stop-DevPowerShell
}
2016-04-15 06:06:14 +08:00
# setup arguments
2021-02-09 09:13:33 +08:00
# adding ErrorOnDuplicatePublishOutputFiles=false due to .NET SDk issue: https://github.com/dotnet/sdk/issues/15748
2021-07-20 07:06:39 +08:00
# removing --no-restore due to .NET SDK issue: https://github.com/dotnet/sdk/issues/18999
# $Arguments = @("publish","--no-restore","/property:GenerateFullPaths=true", "/property:ErrorOnDuplicatePublishOutputFiles=false")
$Arguments = @ ( " publish " , " /property:GenerateFullPaths=true " , " /property:ErrorOnDuplicatePublishOutputFiles=false " )
2018-10-30 08:43:41 +08:00
if ( $Output -or $SMAOnly ) {
$Arguments + = " --output " , ( Split-Path $Options . Output )
2016-07-20 03:51:11 +08:00
}
2021-08-10 03:21:14 +08:00
# Add --self-contained due to "warning NETSDK1179: One of '--self-contained' or '--no-self-contained' options are required when '--runtime' is used."
if ( $Options . Runtime -like 'fxdependent*' ) {
$Arguments + = " --no-self-contained "
2021-12-03 07:05:54 +08:00
# The UseAppHost = true property creates ".exe" for the fxdependent packages.
# We need this in the package as Start-Job needs it.
$Arguments + = " /property:UseAppHost=true "
2021-08-10 03:21:14 +08:00
}
else {
$Arguments + = " --self-contained "
}
2020-01-16 03:03:48 +08:00
if ( $Options . Runtime -like 'win*' -or ( $Options . Runtime -like 'fxdependent*' -and $environment . IsWindows ) ) {
2019-04-17 05:14:29 +08:00
$Arguments + = " /property:IsWindows=true "
}
else {
$Arguments + = " /property:IsWindows=false "
}
2020-04-25 01:47:34 +08:00
# Framework Dependent builds do not support ReadyToRun as it needs a specific runtime to optimize for.
# The property is set in Powershell.Common.props file.
# We override the property through the build command line.
2022-04-22 00:46:28 +08:00
if ( ( $Options . Runtime -like 'fxdependent*' -or $ForMinimalSize ) -and $Options . Runtime -notmatch $optimizedFddRegex ) {
2020-04-25 01:47:34 +08:00
$Arguments + = " /property:PublishReadyToRun=false "
}
2016-04-15 06:06:14 +08:00
$Arguments + = " --configuration " , $Options . Configuration
$Arguments + = " --framework " , $Options . Framework
2017-06-06 05:10:42 +08:00
2019-04-17 05:14:29 +08:00
if ( $Detailed . IsPresent )
{
$Arguments + = '--verbosity' , 'd'
}
if ( -not $SMAOnly -and $Options . Runtime -notlike 'fxdependent*' ) {
2017-06-06 05:10:42 +08:00
# libraries should not have runtime
$Arguments + = " --runtime " , $Options . Runtime
2022-04-22 00:46:28 +08:00
} elseif ( $Options . Runtime -match $optimizedFddRegex ) {
$runtime = $Options . Runtime -replace 'fxdependent-' , ''
$Arguments + = " --runtime " , $runtime
2017-06-06 05:10:42 +08:00
}
2016-04-02 08:51:38 +08:00
2017-09-07 06:20:25 +08:00
if ( $ReleaseTag ) {
$ReleaseTagToUse = $ReleaseTag -Replace '^v'
$Arguments + = " /property:ReleaseTag= $ReleaseTagToUse "
}
2021-07-07 11:50:35 +08:00
if ( $SkipRoslynAnalyzers ) {
$Arguments + = " /property:RunAnalyzersDuringBuild=false "
}
2016-03-12 10:24:43 +08:00
# handle Restore
2020-08-14 05:52:00 +08:00
Restore-PSPackage -Options $Options -Force: $Restore -InteractiveAuth: $InteractiveAuth
2016-02-22 07:06:39 +08:00
2016-06-15 18:42:54 +08:00
# handle ResGen
2016-06-17 22:51:32 +08:00
# Heuristic to run ResGen on the fresh machine
2016-08-04 04:23:21 +08:00
if ( $ResGen -or -not ( Test-Path " $PSScriptRoot /src/Microsoft.PowerShell.ConsoleHost/gen " ) ) {
2020-06-19 02:48:06 +08:00
Write-Log -message " Run ResGen (generating C# bindings for resx files) "
2016-07-16 07:52:00 +08:00
Start-ResGen
}
2016-06-15 18:42:54 +08:00
2017-11-16 02:52:06 +08:00
# Handle TypeGen
# .inc file name must be different for Windows and Linux to allow build on Windows and WSL.
2022-04-22 00:46:28 +08:00
$runtime = $Options . Runtime
if ( $Options . Runtime -match $optimizedFddRegex ) {
$runtime = $Options . Runtime -replace 'fxdependent-' , ''
}
$incFileName = " powershell_ $runtime .inc "
2017-11-24 18:42:41 +08:00
if ( $TypeGen -or -not ( Test-Path " $PSScriptRoot /src/TypeCatalogGen/ $incFileName " ) ) {
2020-06-19 02:48:06 +08:00
Write-Log -message " Run TypeGen (generating CorePsTypeCatalog.cs) "
2017-11-16 02:52:06 +08:00
Start-TypeGen -IncFileName $incFileName
2016-06-18 02:23:29 +08:00
}
2017-10-18 08:25:11 +08:00
# Get the folder path where pwsh.exe is located.
2018-10-21 02:38:15 +08:00
if ( ( Split-Path $Options . Output -Leaf ) -like " pwsh* " ) {
$publishPath = Split-Path $Options . Output -Parent
}
else {
$publishPath = $Options . Output
}
2016-04-02 05:41:13 +08:00
try {
2019-10-17 00:55:41 +08:00
# Relative paths do not work well if cwd is not changed to project
Push-Location $Options . Top
2019-07-13 08:18:11 +08:00
2022-04-22 00:46:28 +08:00
if ( $Options . Runtime -notlike 'fxdependent*' -or $Options . Runtime -match $optimizedFddRegex ) {
Write-Verbose " Building without shim " -Verbose
2021-03-13 05:25:30 +08:00
$sdkToUse = 'Microsoft.NET.Sdk'
if ( $Options . Runtime -like 'win7-*' -and ! $ForMinimalSize ) {
## WPF/WinForm and the PowerShell GraphicalHost assemblies are included
## when 'Microsoft.NET.Sdk.WindowsDesktop' is used.
$sdkToUse = 'Microsoft.NET.Sdk.WindowsDesktop'
2019-07-13 08:18:11 +08:00
}
2021-03-13 05:25:30 +08:00
$Arguments + = " /property:SDKToUse= $sdkToUse "
2020-06-19 02:48:06 +08:00
Write-Log -message " Run dotnet $Arguments from $PWD "
2019-07-13 08:18:11 +08:00
Start-NativeExecution { dotnet $Arguments }
2020-06-19 02:48:06 +08:00
Write-Log -message " PowerShell output: $( $Options . Output ) "
2019-07-13 08:18:11 +08:00
} else {
2022-04-22 00:46:28 +08:00
Write-Verbose " Building with shim " -Verbose
2019-07-13 08:18:11 +08:00
$globalToolSrcFolder = Resolve-Path ( Join-Path $Options . Top " ../Microsoft.PowerShell.GlobalTool.Shim " ) | Select-Object -ExpandProperty Path
2019-02-27 04:56:29 +08:00
if ( $Options . Runtime -eq 'fxdependent' ) {
2019-07-13 08:18:11 +08:00
$Arguments + = " /property:SDKToUse=Microsoft.NET.Sdk "
} elseif ( $Options . Runtime -eq 'fxdependent-win-desktop' ) {
$Arguments + = " /property:SDKToUse=Microsoft.NET.Sdk.WindowsDesktop "
}
2019-02-27 04:56:29 +08:00
2020-06-19 02:48:06 +08:00
Write-Log -message " Run dotnet $Arguments from $PWD "
2019-07-13 08:18:11 +08:00
Start-NativeExecution { dotnet $Arguments }
2020-06-19 02:48:06 +08:00
Write-Log -message " PowerShell output: $( $Options . Output ) "
2019-07-13 08:18:11 +08:00
try {
Push-Location $globalToolSrcFolder
2022-02-17 01:56:41 +08:00
if ( $Arguments -notcontains '--output' ) {
$Arguments + = " --output " , $publishPath
}
2020-06-19 02:48:06 +08:00
Write-Log -message " Run dotnet $Arguments from $PWD to build global tool entry point "
2019-07-13 08:18:11 +08:00
Start-NativeExecution { dotnet $Arguments }
}
finally {
Pop-Location
2019-02-27 04:56:29 +08:00
}
2016-07-30 01:00:46 +08:00
}
2016-04-02 05:41:13 +08:00
} finally {
2016-04-02 03:14:09 +08:00
Pop-Location
2016-03-12 08:19:05 +08:00
}
2016-11-18 05:54:38 +08:00
2019-10-17 00:55:41 +08:00
# No extra post-building task will run if '-SMAOnly' is specified, because its purpose is for a quick update of S.M.A.dll after full build.
if ( $SMAOnly ) {
return
}
2019-05-21 13:43:51 +08:00
# publish reference assemblies
Move powershell to .NET Core 2.0 (#3556)
This change moves powershell to .NET Core 2.0. Major changes are:
1. PowerShell assemblies are now targeting `netcoreapp2.0`. We are using `microsoft.netcore.app-2.0.0-preview1-001913-00`, which is from dotnet-core build 4/4/17. We cannot target `netstandard2.0` because the packages `System.Reflection.Emit` and `System.Reflection.Emit.Lightweight`, which are needed for powershell class, cannot be referenced when targeting `netstandard2.0`.
2. Refactor code to remove most CLR stub types and extension types.
3. Update build scripts to enable CI builds. The `-cache` section is specified to depend on `appveyor.yml`, so the cache will be invalidated if `appveyor.yml` is changed.
4. Ship `netcoreapp` reference assemblies with powershell to fix the issues in `Add-Type` (#2764). By default `Add-Type` will reference all those reference assemblies when compiling C# code. If `-ReferenceAssembly` is specified, then we search reference assemblies first, then the framework runtime assemblies, and lastly the loaded assemblies (possibly a third-party one that was already loaded).
5. `dotnet publish` generates executable on Unix platforms, but doesn't set "x" permission and thus it cannot execute. Currently, the "x" permission is set in the build script, `dotnet/cli` issue [#6286](https://github.com/dotnet/cli/issues/6286) is tracking this.
6. Replace the use of some APIs with the ones that take `SecureString`.
7. osx.10.12 is required to update to `netcoreapp2.0` because `dotnet-cli` 2.0.0-preview only works on osx.10.12.
8. Add dependency to `System.ValueTuple` to work around a ambiguous type identity issue in coreclr. The issue is tracked by `dotnet/corefx` [#17797](https://github.com/dotnet/corefx/issues/17797). When moving to newer version of `netcoreapp2.0`, we need to verify if this dependency is still needed.
2017-04-18 02:52:38 +08:00
try {
Push-Location " $PSScriptRoot /src/TypeCatalogGen "
2017-11-16 02:52:06 +08:00
$refAssemblies = Get-Content -Path $incFileName | Where-Object { $_ -like " *microsoft.netcore.app* " } | ForEach-Object { $_ . TrimEnd ( ';' ) }
Move powershell to .NET Core 2.0 (#3556)
This change moves powershell to .NET Core 2.0. Major changes are:
1. PowerShell assemblies are now targeting `netcoreapp2.0`. We are using `microsoft.netcore.app-2.0.0-preview1-001913-00`, which is from dotnet-core build 4/4/17. We cannot target `netstandard2.0` because the packages `System.Reflection.Emit` and `System.Reflection.Emit.Lightweight`, which are needed for powershell class, cannot be referenced when targeting `netstandard2.0`.
2. Refactor code to remove most CLR stub types and extension types.
3. Update build scripts to enable CI builds. The `-cache` section is specified to depend on `appveyor.yml`, so the cache will be invalidated if `appveyor.yml` is changed.
4. Ship `netcoreapp` reference assemblies with powershell to fix the issues in `Add-Type` (#2764). By default `Add-Type` will reference all those reference assemblies when compiling C# code. If `-ReferenceAssembly` is specified, then we search reference assemblies first, then the framework runtime assemblies, and lastly the loaded assemblies (possibly a third-party one that was already loaded).
5. `dotnet publish` generates executable on Unix platforms, but doesn't set "x" permission and thus it cannot execute. Currently, the "x" permission is set in the build script, `dotnet/cli` issue [#6286](https://github.com/dotnet/cli/issues/6286) is tracking this.
6. Replace the use of some APIs with the ones that take `SecureString`.
7. osx.10.12 is required to update to `netcoreapp2.0` because `dotnet-cli` 2.0.0-preview only works on osx.10.12.
8. Add dependency to `System.ValueTuple` to work around a ambiguous type identity issue in coreclr. The issue is tracked by `dotnet/corefx` [#17797](https://github.com/dotnet/corefx/issues/17797). When moving to newer version of `netcoreapp2.0`, we need to verify if this dependency is still needed.
2017-04-18 02:52:38 +08:00
$refDestFolder = Join-Path -Path $publishPath -ChildPath " ref "
if ( Test-Path $refDestFolder -PathType Container ) {
Remove-Item $refDestFolder -Force -Recurse -ErrorAction Stop
}
New-Item -Path $refDestFolder -ItemType Directory -Force -ErrorAction Stop > $null
Copy-Item -Path $refAssemblies -Destination $refDestFolder -Force -ErrorAction Stop
} finally {
Pop-Location
}
2019-08-09 02:37:25 +08:00
if ( $ReleaseTag ) {
$psVersion = $ReleaseTag
}
else {
2020-01-14 03:21:53 +08:00
$psVersion = git - -git -dir = " $PSScriptRoot /.git " describe
2019-08-09 02:37:25 +08:00
}
2020-02-04 01:44:10 +08:00
if ( $environment . IsLinux ) {
if ( $environment . IsRedHatFamily -or $environment . IsDebian ) {
# Symbolic links added here do NOT affect packaging as we do not build on Debian.
# add two symbolic links to system shared libraries that libmi.so is dependent on to handle
# platform specific changes. This is the only set of platforms needed for this currently
# as Ubuntu has these specific library files in the platform and macOS builds for itself
# against the correct versions.
if ( $environment . IsDebian10 -or $environment . IsDebian11 ) {
$sslTarget = " /usr/lib/x86_64-linux-gnu/libssl.so.1.1 "
$cryptoTarget = " /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1 "
}
elseif ( $environment . IsDebian9 ) {
# NOTE: Debian 8 doesn't need these symlinks
$sslTarget = " /usr/lib/x86_64-linux-gnu/libssl.so.1.0.2 "
$cryptoTarget = " /usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.2 "
}
else { #IsRedHatFamily
$sslTarget = " /lib64/libssl.so.10 "
$cryptoTarget = " /lib64/libcrypto.so.10 "
}
2018-08-25 06:20:22 +08:00
2020-05-07 20:00:30 +08:00
if ( ! ( Test-Path " $publishPath /libssl.so.1.0.0 " ) ) {
2020-02-04 01:44:10 +08:00
$null = New-Item -Force -ItemType SymbolicLink -Target $sslTarget -Path " $publishPath /libssl.so.1.0.0 " -ErrorAction Stop
}
2020-05-07 20:00:30 +08:00
if ( ! ( Test-Path " $publishPath /libcrypto.so.1.0.0 " ) ) {
2020-02-04 01:44:10 +08:00
$null = New-Item -Force -ItemType SymbolicLink -Target $cryptoTarget -Path " $publishPath /libcrypto.so.1.0.0 " -ErrorAction Stop
}
2017-07-21 00:42:34 +08:00
}
}
Move powershell to .NET Core 2.0 (#3556)
This change moves powershell to .NET Core 2.0. Major changes are:
1. PowerShell assemblies are now targeting `netcoreapp2.0`. We are using `microsoft.netcore.app-2.0.0-preview1-001913-00`, which is from dotnet-core build 4/4/17. We cannot target `netstandard2.0` because the packages `System.Reflection.Emit` and `System.Reflection.Emit.Lightweight`, which are needed for powershell class, cannot be referenced when targeting `netstandard2.0`.
2. Refactor code to remove most CLR stub types and extension types.
3. Update build scripts to enable CI builds. The `-cache` section is specified to depend on `appveyor.yml`, so the cache will be invalidated if `appveyor.yml` is changed.
4. Ship `netcoreapp` reference assemblies with powershell to fix the issues in `Add-Type` (#2764). By default `Add-Type` will reference all those reference assemblies when compiling C# code. If `-ReferenceAssembly` is specified, then we search reference assemblies first, then the framework runtime assemblies, and lastly the loaded assemblies (possibly a third-party one that was already loaded).
5. `dotnet publish` generates executable on Unix platforms, but doesn't set "x" permission and thus it cannot execute. Currently, the "x" permission is set in the build script, `dotnet/cli` issue [#6286](https://github.com/dotnet/cli/issues/6286) is tracking this.
6. Replace the use of some APIs with the ones that take `SecureString`.
7. osx.10.12 is required to update to `netcoreapp2.0` because `dotnet-cli` 2.0.0-preview only works on osx.10.12.
8. Add dependency to `System.ValueTuple` to work around a ambiguous type identity issue in coreclr. The issue is tracked by `dotnet/corefx` [#17797](https://github.com/dotnet/corefx/issues/17797). When moving to newer version of `netcoreapp2.0`, we need to verify if this dependency is still needed.
2017-04-18 02:52:38 +08:00
# download modules from powershell gallery.
# - PowerShellGet, PackageManagement, Microsoft.PowerShell.Archive
2018-03-22 05:24:44 +08:00
if ( $PSModuleRestore ) {
Restore-PSModuleToBuild -PublishPath $publishPath
}
2019-09-13 05:39:11 +08:00
# publish powershell.config.json
$config = @ { }
2022-02-05 07:21:42 +08:00
if ( $Options . Runtime -like " *win* " ) {
# Execution Policy is only supported on Windows
2020-02-05 08:33:26 +08:00
$config = @ { " Microsoft.PowerShell:ExecutionPolicy " = " RemoteSigned " ;
2022-02-05 07:21:42 +08:00
" WindowsPowerShellCompatibilityModuleDenyList " = @ ( " PSScheduledJob " , " BestPractices " , " UpdateServices " )
}
2019-09-13 05:39:11 +08:00
}
2019-10-18 05:43:46 +08:00
if ( -not $SkipExperimentalFeatureGeneration -and
( Test-IsPreview $psVersion ) -and
2022-02-05 07:21:42 +08:00
-not ( Test-IsReleaseCandidate $psVersion )
) {
2019-09-17 03:22:34 +08:00
2022-02-05 07:21:42 +08:00
$ExperimentalFeatureJsonFilePath = if ( $Options . Runtime -like " *win* " ) {
" $PSScriptRoot /experimental-feature-windows.json "
} else {
" $PSScriptRoot /experimental-feature-linux.json "
}
if ( -not ( Test-Path $ExperimentalFeatureJsonFilePath ) ) {
throw " ExperimentalFeatureJsonFilePath: $ExperimentalFeatureJsonFilePath does not exist "
2019-09-13 05:39:11 +08:00
}
2022-02-05 07:21:42 +08:00
$json = Get-Content -Raw $ExperimentalFeatureJsonFilePath
2019-09-13 05:39:11 +08:00
$config + = @ { ExperimentalFeatures = ( [ string[] ] ( $json | ConvertFrom-Json ) ) }
2022-02-05 07:21:42 +08:00
} else {
Write-Warning -Message " Experimental features are not enabled in powershell.config.json file "
2019-09-13 05:39:11 +08:00
}
if ( $config . Count -gt 0 ) {
$configPublishPath = Join-Path -Path $publishPath -ChildPath " powershell.config.json "
Set-Content -Path $configPublishPath -Value ( $config | ConvertTo-Json ) -Force -ErrorAction Stop
}
2018-03-22 05:24:44 +08:00
# Restore the Pester module
if ( $CI ) {
Restore-PSPester -Destination ( Join-Path $publishPath " Modules " )
2017-11-14 02:10:51 +08:00
}
2021-10-13 06:40:43 +08:00
if ( $PSOptionsPath ) {
$resolvedPSOptionsPath = $ExecutionContext . SessionState . Path . GetUnresolvedProviderPathFromPSPath ( $PSOptionsPath )
$parent = Split-Path -Path $resolvedPSOptionsPath
if ( ! ( Test-Path $parent ) ) {
$null = New-Item -ItemType Directory -Path $parent
}
Save-PSOptions -PSOptionsPath $PSOptionsPath -Options $Options
}
2017-11-14 02:10:51 +08:00
}
2016-11-21 04:50:06 +08:00
2018-03-23 02:22:16 +08:00
function Restore-PSPackage
{
2020-02-04 01:44:10 +08:00
[ CmdletBinding ( ) ]
2018-03-23 02:22:16 +08:00
param (
[ ValidateNotNullOrEmpty ( ) ]
[ Parameter ( ) ]
[ string[] ] $ProjectDirs ,
[ ValidateNotNullOrEmpty ( ) ]
[ Parameter ( ) ]
$Options = ( Get-PSOptions -DefaultToNew ) ,
2020-08-14 05:52:00 +08:00
[ switch ] $Force ,
2020-12-15 06:16:55 +08:00
[ switch ] $InteractiveAuth ,
[ switch ] $PSModule
2018-03-23 02:22:16 +08:00
)
if ( -not $ProjectDirs )
{
$ProjectDirs = @ ( $Options . Top , " $PSScriptRoot /src/TypeCatalogGen " , " $PSScriptRoot /src/ResGen " , " $PSScriptRoot /src/Modules " )
2019-02-27 04:56:29 +08:00
2019-07-13 08:18:11 +08:00
if ( $Options . Runtime -like 'fxdependent*' ) {
2019-02-27 04:56:29 +08:00
$ProjectDirs + = " $PSScriptRoot /src/Microsoft.PowerShell.GlobalTool.Shim "
}
2018-03-23 02:22:16 +08:00
}
if ( $Force -or ( -not ( Test-Path " $( $Options . Top ) /obj/project.assets.json " ) ) ) {
2021-03-13 05:25:30 +08:00
if ( $Options . Runtime -eq 'fxdependent-win-desktop' ) {
$sdkToUse = 'Microsoft.NET.Sdk.WindowsDesktop'
}
else {
$sdkToUse = 'Microsoft.NET.Sdk'
if ( $Options . Runtime -like 'win7-*' -and ! $Options . ForMinimalSize ) {
$sdkToUse = 'Microsoft.NET.Sdk.WindowsDesktop'
2019-07-13 08:18:11 +08:00
}
}
2020-12-15 06:16:55 +08:00
if ( $PSModule . IsPresent ) {
$RestoreArguments = @ ( " --verbosity " )
}
elseif ( $Options . Runtime -notlike 'fxdependent*' ) {
2019-07-13 08:18:11 +08:00
$RestoreArguments = @ ( " --runtime " , $Options . Runtime , " /property:SDKToUse= $sdkToUse " , " --verbosity " )
2018-09-11 03:47:32 +08:00
} else {
2019-07-13 08:18:11 +08:00
$RestoreArguments = @ ( " /property:SDKToUse= $sdkToUse " , " --verbosity " )
2018-09-11 03:47:32 +08:00
}
2020-02-04 01:44:10 +08:00
if ( $VerbosePreference -eq 'Continue' ) {
2018-03-23 02:22:16 +08:00
$RestoreArguments + = " detailed "
} else {
$RestoreArguments + = " quiet "
}
2020-08-14 05:52:00 +08:00
if ( $InteractiveAuth ) {
$RestoreArguments + = " --interactive "
}
2018-03-23 02:22:16 +08:00
$ProjectDirs | ForEach-Object {
2018-08-17 08:24:41 +08:00
$project = $_
2020-06-19 02:48:06 +08:00
Write-Log -message " Run dotnet restore $project $RestoreArguments "
2018-08-17 05:23:30 +08:00
$retryCount = 0
$maxTries = 5
while ( $retryCount -lt $maxTries )
{
try
{
2018-08-17 08:24:41 +08:00
Start-NativeExecution { dotnet restore $project $RestoreArguments }
2018-08-17 05:23:30 +08:00
}
catch
{
2020-06-19 02:48:06 +08:00
Write-Log -message " Failed to restore $project , retrying... "
2018-08-17 05:23:30 +08:00
$retryCount + +
if ( $retryCount -ge $maxTries )
{
throw
}
2018-08-17 08:24:41 +08:00
continue
2018-08-17 05:23:30 +08:00
}
2020-06-19 02:48:06 +08:00
Write-Log -message " Done restoring $project "
2018-08-17 05:23:30 +08:00
break
}
2018-03-23 02:22:16 +08:00
}
}
}
2017-11-14 02:10:51 +08:00
function Restore-PSModuleToBuild
{
param (
[ Parameter ( Mandatory ) ]
[ string ]
2018-03-22 05:24:44 +08:00
$PublishPath
2017-11-14 02:10:51 +08:00
)
2016-11-21 04:50:06 +08:00
2020-06-19 02:48:06 +08:00
Write-Log -message " Restore PowerShell modules to $publishPath "
2017-11-14 02:10:51 +08:00
$modulesDir = Join-Path -Path $publishPath -ChildPath " Modules "
2018-12-01 03:49:38 +08:00
Copy-PSGalleryModules -Destination $modulesDir -CsProjPath " $PSScriptRoot \src\Modules\PSGalleryModules.csproj "
2019-01-10 08:12:40 +08:00
# Remove .nupkg.metadata files
Get-ChildItem $PublishPath -Filter '.nupkg.metadata' -Recurse | ForEach-Object { Remove-Item $_ . FullName -ErrorAction SilentlyContinue -Force }
2017-12-05 09:16:53 +08:00
}
2017-12-13 08:07:12 +08:00
function Restore-PSPester
{
2018-02-08 05:44:29 +08:00
param (
2017-12-13 08:07:12 +08:00
[ ValidateNotNullOrEmpty ( ) ]
2018-02-08 05:44:29 +08:00
[ string ] $Destination = ( [ IO.Path ] :: Combine ( ( Split-Path ( Get-PSOptions -DefaultToNew ) . Output ) , " Modules " ) )
2017-12-13 08:07:12 +08:00
)
2020-04-14 14:21:19 +08:00
Save-Module -Name Pester -Path $Destination -Repository PSGallery -MaximumVersion 4.99
2017-12-13 08:07:12 +08:00
}
2018-02-08 05:44:29 +08:00
2016-09-29 07:20:29 +08:00
function Compress-TestContent {
[ CmdletBinding ( ) ]
param (
$Destination
)
2017-10-03 03:14:19 +08:00
$null = Publish-PSTestTools
2017-06-06 08:37:48 +08:00
$powerShellTestRoot = Join-Path $PSScriptRoot 'test'
2016-09-29 07:20:29 +08:00
Add-Type -AssemblyName System . IO . Compression . FileSystem
$resolvedPath = $ExecutionContext . SessionState . Path . GetUnresolvedProviderPathFromPSPath ( $Destination )
2017-01-17 05:31:14 +08:00
[ System.IO.Compression.ZipFile ] :: CreateFromDirectory ( $powerShellTestRoot , $resolvedPath )
2016-09-29 07:20:29 +08:00
}
2016-04-15 06:06:14 +08:00
function New-PSOptions {
[ CmdletBinding ( ) ]
param (
2018-05-15 06:01:44 +08:00
[ ValidateSet ( " Debug " , " Release " , " CodeCoverage " , '' ) ]
2016-04-15 06:06:14 +08:00
[ string ] $Configuration ,
2022-02-17 01:56:41 +08:00
[ ValidateSet ( " net7.0 " ) ]
[ string ] $Framework = " net7.0 " ,
2016-04-15 06:06:14 +08:00
# These are duplicated from Start-PSBuild
# We do not use ValidateScript since we want tab completion
[ ValidateSet ( " " ,
2018-12-06 02:55:09 +08:00
" alpine-x64 " ,
2018-09-11 03:47:32 +08:00
" fxdependent " ,
2022-04-22 00:46:28 +08:00
" fxdependent-linux-x64 " ,
2019-07-13 08:18:11 +08:00
" fxdependent-win-desktop " ,
2017-12-09 07:43:53 +08:00
" linux-arm " ,
2018-12-06 02:55:09 +08:00
" linux-arm64 " ,
2018-06-28 06:30:38 +08:00
" linux-x64 " ,
2021-03-10 04:09:31 +08:00
" osx-arm64 " ,
2018-06-28 06:30:38 +08:00
" osx-x64 " ,
2017-12-09 07:43:53 +08:00
" win-arm " ,
2018-06-28 06:30:38 +08:00
" win-arm64 " ,
" win7-x64 " ,
" win7-x86 " ) ]
2016-04-15 06:06:14 +08:00
[ string ] $Runtime ,
2018-10-30 08:43:41 +08:00
# Accept a path to the output directory
# If not null or empty, name of the executable will be appended to
# this path, otherwise, to the default path, and then the full path
# of the output executable will be assigned to the Output property
2016-05-07 01:28:45 +08:00
[ string ] $Output ,
2016-04-15 06:06:14 +08:00
2017-11-03 04:52:17 +08:00
[ switch ] $SMAOnly ,
2017-11-10 01:23:00 +08:00
2021-03-13 05:25:30 +08:00
[ switch ] $PSModuleRestore ,
[ switch ] $ForMinimalSize
2016-04-15 06:06:14 +08:00
)
2016-06-21 02:59:14 +08:00
# Add .NET CLI tools to PATH
Find-Dotnet
2016-04-15 06:06:14 +08:00
if ( -not $Configuration ) {
2018-05-15 06:01:44 +08:00
$Configuration = 'Debug'
2016-04-15 06:06:14 +08:00
}
2019-04-17 06:13:30 +08:00
2016-09-29 01:47:16 +08:00
Write-Verbose " Using configuration ' $Configuration ' "
2019-05-21 13:43:51 +08:00
Write-Verbose " Using framework ' $Framework ' "
2016-04-15 06:06:14 +08:00
if ( -not $Runtime ) {
2022-08-04 03:29:23 +08:00
$Info = dotnet - -info
Write-Verbose " dotnet --info: `n ${Info} "
$Platform , $Architecture = $info |
Select-String '^\s*OS Platform:\s+(\w+)$' , '^\s*Architecture:\s+(\w+)$' |
Select-Object -First 2 |
ForEach-Object { $_ . Matches . Groups [ 1 ] . Value }
switch ( $Platform ) {
'Windows' {
# For x86 and x64 architectures, we use win7-x64 and win7-x86 RIDs.
# For arm and arm64 architectures, we use win-arm and win-arm64 RIDs.
$Platform = if ( $Architecture [ 0 ] -eq 'x' ) { 'win7' } else { 'win' }
$Runtime = " ${Platform} - ${Architecture} "
2021-03-10 04:09:31 +08:00
}
2022-08-04 03:29:23 +08:00
'Linux' {
$Runtime = " linux- ${Architecture} "
2016-04-15 06:06:14 +08:00
}
2022-08-04 03:29:23 +08:00
'Darwin' {
$Runtime = " osx- ${Architecture} "
}
2017-08-30 08:21:50 +08:00
}
2016-04-15 06:06:14 +08:00
if ( -not $Runtime ) {
Throw " Could not determine Runtime Identifier, please update dotnet "
} else {
2016-07-02 03:09:50 +08:00
Write-Verbose " Using runtime ' $Runtime ' "
2016-04-15 06:06:14 +08:00
}
2016-04-02 13:01:37 +08:00
}
2020-01-16 03:03:48 +08:00
$PowerShellDir = if ( $Runtime -like 'win*' -or ( $Runtime -like 'fxdependent*' -and $environment . IsWindows ) ) {
2019-04-17 05:14:29 +08:00
" powershell-win-core "
} else {
" powershell-unix "
}
$Top = [ IO.Path ] :: Combine ( $PSScriptRoot , " src " , $PowerShellDir )
Write-Verbose " Top project directory is $Top "
2019-07-13 08:18:11 +08:00
$Executable = if ( $Runtime -like 'fxdependent*' ) {
2018-09-11 03:47:32 +08:00
" pwsh.dll "
2020-01-16 03:03:48 +08:00
} elseif ( $environment . IsLinux -or $environment . IsMacOS ) {
2017-10-18 08:25:11 +08:00
" pwsh "
2020-01-16 03:03:48 +08:00
} elseif ( $environment . IsWindows ) {
2017-10-18 08:25:11 +08:00
" pwsh.exe "
2016-04-15 06:06:14 +08:00
}
2016-05-07 01:28:45 +08:00
# Build the Output path
2016-10-04 02:04:40 +08:00
if ( ! $Output ) {
2019-07-13 08:18:11 +08:00
if ( $Runtime -like 'fxdependent*' ) {
2018-09-11 03:47:32 +08:00
$Output = [ IO.Path ] :: Combine ( $Top , " bin " , $Configuration , $Framework , " publish " , $Executable )
} else {
$Output = [ IO.Path ] :: Combine ( $Top , " bin " , $Configuration , $Framework , $Runtime , " publish " , $Executable )
}
2018-10-30 08:43:41 +08:00
} else {
$Output = [ IO.Path ] :: Combine ( $Output , $Executable )
2016-05-07 01:28:45 +08:00
}
2016-04-15 06:06:14 +08:00
2016-07-20 03:51:11 +08:00
if ( $SMAOnly )
{
2016-09-29 01:47:16 +08:00
$Top = [ IO.Path ] :: Combine ( $PSScriptRoot , " src " , " System.Management.Automation " )
2016-07-20 03:51:11 +08:00
}
2017-08-16 07:17:45 +08:00
$RootInfo = @ { RepoPath = $PSScriptRoot }
# the valid root is the root of the filesystem and the folder PowerShell
$RootInfo [ 'ValidPath' ] = Join-Path -Path ( [ system.io.path ] :: GetPathRoot ( $RootInfo . RepoPath ) ) -ChildPath 'PowerShell'
2017-08-22 06:23:52 +08:00
2017-08-17 07:07:18 +08:00
if ( $RootInfo . RepoPath -ne $RootInfo . ValidPath )
2017-08-16 07:17:45 +08:00
{
2017-09-12 03:36:24 +08:00
$RootInfo [ 'Warning' ] = " Please ensure your repo is at the root of the file system and named 'PowerShell' (example: ' $( $RootInfo . ValidPath ) '), when building and packaging for release! "
2017-08-16 07:17:45 +08:00
$RootInfo [ 'IsValid' ] = $false
}
2017-08-22 06:23:52 +08:00
else
2017-08-16 07:17:45 +08:00
{
$RootInfo [ 'IsValid' ] = $true
}
2018-08-18 13:06:51 +08:00
return New-PSOptionsObject `
-RootInfo ( [ PSCustomObject ] $RootInfo ) `
-Top $Top `
-Runtime $Runtime `
-Configuration $Configuration `
-PSModuleRestore $PSModuleRestore . IsPresent `
-Framework $Framework `
2021-03-13 05:25:30 +08:00
-Output $Output `
-ForMinimalSize $ForMinimalSize
2016-04-15 06:06:14 +08:00
}
2017-07-24 03:29:33 +08:00
# Get the Options of the last build
function Get-PSOptions {
2017-12-13 08:07:12 +08:00
param (
2018-11-09 11:33:24 +08:00
[ Parameter ( HelpMessage = 'Defaults to New-PSOption if a build has not occurred.' ) ]
2017-12-13 08:07:12 +08:00
[ switch ]
$DefaultToNew
)
2020-02-04 01:44:10 +08:00
if ( ! $script:Options -and $DefaultToNew . IsPresent )
2017-12-13 08:07:12 +08:00
{
return New-PSOptions
}
2017-07-24 03:29:33 +08:00
return $script:Options
}
2017-11-14 02:10:51 +08:00
function Set-PSOptions {
param (
[ PSObject ]
$Options
)
$script:Options = $Options
}
2016-04-15 06:06:14 +08:00
function Get-PSOutput {
[ CmdletBinding ( ) ] param (
[ hashtable ] $Options
)
if ( $Options ) {
return $Options . Output
} elseif ( $script:Options ) {
return $script:Options . Output
} else {
return ( New-PSOptions ) . Output
}
2016-02-22 07:06:39 +08:00
}
2016-07-27 08:41:03 +08:00
function Get-PesterTag {
param ( [ Parameter ( Position = 0 ) ] [ string ] $testbase = " $PSScriptRoot /test/powershell " )
$alltags = @ { }
$warnings = @ ( )
2020-05-07 20:00:30 +08:00
Get-ChildItem -Recurse $testbase -File | Where-Object { $_ . name -match " tests.ps1 " } | ForEach-Object {
2016-07-27 08:41:03 +08:00
$fullname = $_ . fullname
$tok = $err = $null
$ast = [ System.Management.Automation.Language.Parser ] :: ParseFile ( $FullName , [ ref ] $tok , [ ref ] $err )
2020-02-04 01:44:10 +08:00
$des = $ast . FindAll ( {
$args [ 0 ] -is [ System.Management.Automation.Language.CommandAst ] `
-and $args [ 0 ] . CommandElements . GetType ( ) -in @ (
[ System.Management.Automation.Language.StringConstantExpressionAst ] ,
[ System.Management.Automation.Language.ExpandableStringExpressionAst ]
) `
-and $args [ 0 ] . CommandElements [ 0 ] . Value -eq " Describe "
} , $true )
2016-07-27 08:41:03 +08:00
foreach ( $describe in $des ) {
$elements = $describe . CommandElements
$lineno = $elements [ 0 ] . Extent . StartLineNumber
2016-09-27 09:12:11 +08:00
$foundPriorityTags = @ ( )
2016-07-27 08:41:03 +08:00
for ( $i = 0 ; $i -lt $elements . Count ; $i + + ) {
if ( $elements [ $i ] . extent . text -match " ^-t " ) {
$vAst = $elements [ $i + 1 ]
if ( $vAst . FindAll ( { $args [ 0 ] -is " System.Management.Automation.Language.VariableExpressionAst " } , $true ) ) {
$warnings + = " TAGS must be static strings, error in ${fullname} , line $lineno "
}
$values = $vAst . FindAll ( { $args [ 0 ] -is " System.Management.Automation.Language.StringConstantExpressionAst " } , $true ) . Value
2017-07-22 12:03:49 +08:00
$values | ForEach-Object {
2018-02-17 03:13:23 +08:00
if ( @ ( 'REQUIREADMINONWINDOWS' , 'REQUIRESUDOONUNIX' , 'SLOW' ) -contains $_ ) {
2016-09-16 10:33:54 +08:00
# These are valid tags also, but they are not the priority tags
}
elseif ( @ ( 'CI' , 'FEATURE' , 'SCENARIO' ) -contains $_ ) {
2016-09-27 09:12:11 +08:00
$foundPriorityTags + = $_
2016-09-16 10:33:54 +08:00
}
else {
2016-07-27 08:41:03 +08:00
$warnings + = " ${fullname} includes improper tag ' $_ ', line ' $lineno ' "
}
2016-09-16 10:33:54 +08:00
2016-08-04 04:23:21 +08:00
$alltags [ $_ ] + +
2016-09-16 10:33:54 +08:00
}
2016-07-27 08:41:03 +08:00
}
}
2016-09-27 09:12:11 +08:00
if ( $foundPriorityTags . Count -eq 0 ) {
$warnings + = " ${fullname} : $lineno does not include -Tag in Describe "
}
elseif ( $foundPriorityTags . Count -gt 1 ) {
$warnings + = " ${fullname} : $lineno includes more then one scope -Tag: $foundPriorityTags "
2016-07-27 08:41:03 +08:00
}
}
}
if ( $Warnings . Count -gt 0 ) {
$alltags [ 'Result' ] = " Fail "
}
else {
$alltags [ 'Result' ] = " Pass "
}
$alltags [ 'Warnings' ] = $warnings
2016-08-04 04:23:21 +08:00
$o = [ pscustomobject ] $alltags
2016-07-27 08:41:03 +08:00
$o . psobject . TypeNames . Add ( " DescribeTagsInUse " )
$o
}
2022-03-23 23:04:07 +08:00
# Function to build and publish the Microsoft.PowerShell.NamedPipeConnection module for
# testing PowerShell remote custom connections.
function Publish-CustomConnectionTestModule
{
$sourcePath = " ${PSScriptRoot} /test/tools/NamedPipeConnection "
$outPath = " ${PSScriptRoot} /test/tools/NamedPipeConnection/out/Microsoft.PowerShell.NamedPipeConnection "
$publishPath = " ${PSScriptRoot} /test/tools/Modules "
$refPath = " ${sourcePath} /src/code/Ref "
# Copy the current SMA build to the refPath.
$smaPath = Join-Path -Path ( Split-Path -Path ( Get-PSOutput ) ) -ChildPath 'System.Management.Automation.dll'
if ( ! ( Test-Path -Path $smaPath ) ) {
throw " Publish-CustomConnectionTestModule: Cannot find reference SMA at: ${smaPath} "
}
if ( ! ( Test-Path -Path $refPath ) ) {
$null = New-Item -Path $refPath -ItemType Directory -Force
}
Copy-Item -Path $smapath -Destination $refPath -Force
Find-DotNet
Push-Location -Path $sourcePath
try {
# Build the Microsoft.PowerShell.NamedPipeConnect module
. / build . ps1 -Clean -Build
if ( ! ( Test-Path -Path $outPath ) ) {
throw " Publish-CustomConnectionTestModule: Build failed. Output path does not exist: $outPath "
}
# Publish the Microsoft.PowerShell.NamedPipeConnection module
Copy-Item -Path $outPath -Destination $publishPath -Recurse -Force
# Clean up build artifacts
. / build . ps1 -Clean
Remove-Item -Path $refPath -Recurse -Force -ErrorAction SilentlyContinue
}
finally {
Pop-Location
}
}
2016-09-13 01:39:42 +08:00
function Publish-PSTestTools {
2016-09-12 14:14:30 +08:00
[ CmdletBinding ( ) ]
2019-04-27 06:41:07 +08:00
param (
[ string ]
$runtime
)
2016-09-12 14:14:30 +08:00
Find-Dotnet
2017-06-14 08:49:56 +08:00
$tools = @ (
2022-02-24 07:01:12 +08:00
@ { Path = " ${PSScriptRoot} /test/tools/TestAlc " ; Output = " library " }
@ { Path = " ${PSScriptRoot} /test/tools/TestExe " ; Output = " exe " }
@ { Path = " ${PSScriptRoot} /test/tools/WebListener " ; Output = " exe " }
@ { Path = " ${PSScriptRoot} /test/tools/TestService " ; Output = " exe " }
2017-06-14 08:49:56 +08:00
)
2017-12-13 08:07:12 +08:00
$Options = Get-PSOptions -DefaultToNew
2016-11-01 00:41:13 +08:00
2017-06-14 08:49:56 +08:00
# Publish tools so it can be run by tests
2016-11-01 00:41:13 +08:00
foreach ( $tool in $tools )
{
2017-06-14 08:49:56 +08:00
Push-Location $tool . Path
2016-11-01 00:41:13 +08:00
try {
2019-05-29 08:31:14 +08:00
$toolPath = Join-Path -Path $tool . Path -ChildPath " bin "
$objPath = Join-Path -Path $tool . Path -ChildPath " obj "
if ( Test-Path $toolPath ) {
Remove-Item -Path $toolPath -Recurse -Force
}
if ( Test-Path $objPath ) {
Remove-Item -Path $objPath -Recurse -Force
}
2022-02-24 07:01:12 +08:00
if ( $tool . Output -eq 'library' ) {
## Handle building and publishing assemblies.
dotnet publish - -configuration $Options . Configuration - -framework $Options . Framework
continue
}
## Handle building and publishing executables.
2019-04-27 06:41:07 +08:00
if ( -not $runtime ) {
2022-02-24 07:01:12 +08:00
$runtime = $Options . Runtime
2019-04-27 06:41:07 +08:00
}
2022-02-24 07:01:12 +08:00
dotnet publish - -output bin - -configuration $Options . Configuration - -framework $Options . Framework - -runtime $runtime - -self -contained
2018-05-09 00:20:39 +08:00
if ( -not $env:PATH . Contains ( $toolPath ) ) {
2017-06-14 08:49:56 +08:00
$env:PATH = $toolPath + $TestModulePathSeparator + $ ( $env:PATH )
}
2016-11-01 00:41:13 +08:00
} finally {
Pop-Location
}
2016-09-12 14:14:30 +08:00
}
2018-10-02 05:40:48 +08:00
2018-12-01 03:49:38 +08:00
# `dotnet restore` on test project is not called if product projects have been restored unless -Force is specified.
Copy-PSGalleryModules -Destination " ${PSScriptRoot} /test/tools/Modules " -CsProjPath " $PSScriptRoot /test/tools/Modules/PSGalleryTestModules.csproj " -Force
2016-09-12 14:14:30 +08:00
}
2018-08-04 02:20:14 +08:00
function Get-ExperimentalFeatureTests {
$testMetadataFile = Join-Path $PSScriptRoot " test/tools/TestMetadata.json "
$metadata = Get-Content -Path $testMetadataFile -Raw | ConvertFrom-Json | ForEach-Object -MemberName ExperimentalFeatures
$features = $metadata | Get-Member -MemberType NoteProperty | ForEach-Object -MemberName Name
$featureTests = @ { }
foreach ( $featureName in $features ) {
$featureTests [ $featureName ] = $metadata . $featureName
}
$featureTests
}
2016-04-02 13:01:45 +08:00
function Start-PSPester {
2017-08-26 23:26:06 +08:00
[ CmdletBinding ( DefaultParameterSetName = 'default' ) ]
2016-09-01 03:13:05 +08:00
param (
2018-07-04 02:16:37 +08:00
[ Parameter ( Position = 0 ) ]
2022-05-25 12:25:24 +08:00
[ ArgumentCompleter ( { param ( $c , $p , $word ) Get-ChildItem -Recurse -File -LiteralPath $PSScriptRoot / Test / PowerShell -filter * . tests . ps1 | Where-Object FullName -like " * $word * " } ) ]
2019-01-16 08:20:45 +08:00
[ string[] ] $Path = @ ( " $PSScriptRoot /test/powershell " ) ,
2016-07-26 08:43:28 +08:00
[ string ] $OutputFormat = " NUnitXml " ,
[ string ] $OutputFile = " pester-tests.xml " ,
2016-09-16 10:22:18 +08:00
[ string[] ] $ExcludeTag = 'Slow' ,
2017-07-19 05:20:14 +08:00
[ string[] ] $Tag = @ ( " CI " , " Feature " ) ,
2016-08-31 02:47:27 +08:00
[ switch ] $ThrowOnFailure ,
2018-08-04 02:20:14 +08:00
[ string ] $BinDir = ( Split-Path ( Get-PSOptions -DefaultToNew ) . Output ) ,
[ string ] $powershell = ( Join-Path $BinDir 'pwsh' ) ,
[ string ] $Pester = ( [ IO.Path ] :: Combine ( $BinDir , " Modules " , " Pester " ) ) ,
2017-08-26 23:26:06 +08:00
[ Parameter ( ParameterSetName = 'Unelevate' , Mandatory = $true ) ]
2016-12-02 03:23:14 +08:00
[ switch ] $Unelevate ,
2017-03-07 05:13:34 +08:00
[ switch ] $Quiet ,
2017-09-20 05:56:32 +08:00
[ switch ] $Terse ,
2017-08-26 23:26:06 +08:00
[ Parameter ( ParameterSetName = 'PassThru' , Mandatory = $true ) ]
2017-09-14 05:14:08 +08:00
[ switch ] $PassThru ,
2018-02-17 03:13:23 +08:00
[ Parameter ( ParameterSetName = 'PassThru' , HelpMessage = 'Run commands on Linux with sudo.' ) ]
[ switch ] $Sudo ,
2018-08-04 02:20:14 +08:00
[ switch ] $IncludeFailingTest ,
2019-01-16 08:20:45 +08:00
[ switch ] $IncludeCommonTests ,
2018-08-15 07:23:50 +08:00
[ string ] $ExperimentalFeatureName ,
[ Parameter ( HelpMessage = 'Title to publish the results as.' ) ]
2019-05-11 06:34:27 +08:00
[ string ] $Title = 'PowerShell 7 Tests' ,
2019-04-03 02:54:11 +08:00
[ Parameter ( ParameterSetName = 'Wait' , Mandatory = $true ,
HelpMessage = 'Wait for the debugger to attach to PowerShell before Pester starts. Debug builds only!' ) ]
2019-04-13 09:12:29 +08:00
[ switch ] $Wait ,
[ switch ] $SkipTestToolBuild
2016-04-02 13:01:45 +08:00
)
2016-07-27 07:01:31 +08:00
2018-07-04 02:16:37 +08:00
if ( -not ( Get-Module -ListAvailable -Name $Pester -ErrorAction SilentlyContinue | Where-Object { $_ . Version -ge " 4.2 " } ) )
2017-10-11 03:37:17 +08:00
{
2018-12-01 03:49:38 +08:00
Restore-PSPester
2017-10-11 03:37:17 +08:00
}
2017-09-14 05:14:08 +08:00
if ( $IncludeFailingTest . IsPresent )
{
$Path + = " $PSScriptRoot /tools/failingTests "
}
2017-09-19 00:31:07 +08:00
2019-01-16 08:20:45 +08:00
if ( $IncludeCommonTests . IsPresent )
{
$path = + = " $PSScriptRoot /test/common "
}
2016-09-16 10:22:18 +08:00
# we need to do few checks and if user didn't provide $ExcludeTag explicitly, we should alternate the default
if ( $Unelevate )
{
2020-01-16 03:03:48 +08:00
if ( -not $environment . IsWindows )
2016-09-16 10:22:18 +08:00
{
throw '-Unelevate is currently not supported on non-Windows platforms'
}
2020-01-16 03:03:48 +08:00
if ( -not $environment . IsAdmin )
2016-09-16 10:22:18 +08:00
{
throw '-Unelevate cannot be applied because the current user is not Administrator'
}
2016-09-27 04:15:58 +08:00
if ( -not $PSBoundParameters . ContainsKey ( 'ExcludeTag' ) )
2016-09-16 10:22:18 +08:00
{
$ExcludeTag + = 'RequireAdminOnWindows'
}
}
2020-01-16 03:03:48 +08:00
elseif ( $environment . IsWindows -and ( -not $environment . IsAdmin ) )
2016-09-16 10:22:18 +08:00
{
2016-09-27 04:15:58 +08:00
if ( -not $PSBoundParameters . ContainsKey ( 'ExcludeTag' ) )
2016-09-16 10:22:18 +08:00
{
$ExcludeTag + = 'RequireAdminOnWindows'
}
}
2020-01-16 03:03:48 +08:00
elseif ( -not $environment . IsWindows -and ( -not $Sudo . IsPresent ) )
2018-02-28 01:23:05 +08:00
{
if ( -not $PSBoundParameters . ContainsKey ( 'ExcludeTag' ) )
{
$ExcludeTag + = 'RequireSudoOnUnix'
}
}
2020-01-16 03:03:48 +08:00
elseif ( -not $environment . IsWindows -and $Sudo . IsPresent )
2018-02-28 01:23:05 +08:00
{
if ( -not $PSBoundParameters . ContainsKey ( 'Tag' ) )
{
$Tag = 'RequireSudoOnUnix'
}
}
2016-09-16 10:22:18 +08:00
2016-09-01 03:13:05 +08:00
Write-Verbose " Running pester tests at ' $path ' with tag ' $( $Tag -join ''', ''' ) ' and ExcludeTag ' $( $ExcludeTag -join ''', ''' ) ' " -Verbose
2019-04-13 09:12:29 +08:00
if ( ! $SkipTestToolBuild . IsPresent )
{
2019-08-25 02:35:34 +08:00
$publishArgs = @ { }
# if we are building for Alpine, we must include the runtime as linux-x64
# will not build runnable test tools
2020-02-04 01:44:10 +08:00
if ( $environment . IsLinux -and $environment . IsAlpine ) {
2019-08-25 02:35:34 +08:00
$publishArgs [ 'runtime' ] = 'alpine-x64'
}
Publish-PSTestTools @publishArgs | ForEach-Object { Write-Host $_ }
2022-03-23 23:04:07 +08:00
# Publish the Microsoft.PowerShell.NamedPipeConnection module for testing custom remote connections.
Publish-CustomConnectionTestModule | ForEach-Object { Write-Host $_ }
2019-04-13 09:12:29 +08:00
}
2017-03-27 12:46:39 +08:00
2016-08-10 03:03:30 +08:00
# All concatenated commands/arguments are suffixed with the delimiter (space)
2018-04-14 01:29:39 +08:00
# Disable telemetry for all startups of pwsh in tests
2019-08-16 07:13:53 +08:00
$command = " `$ env:POWERSHELL_TELEMETRY_OPTOUT = 'yes'; "
2017-09-20 05:56:32 +08:00
if ( $Terse )
{
2018-02-17 03:13:23 +08:00
$command + = " `$ ProgressPreference = 'silentlyContinue'; "
2017-09-20 05:56:32 +08:00
}
2016-08-10 03:03:30 +08:00
2017-03-27 12:46:39 +08:00
# Autoload (in subprocess) temporary modules used in our tests
2018-12-01 03:49:38 +08:00
$newPathFragment = $TestModulePath + $TestModulePathSeparator
2018-10-02 05:40:48 +08:00
$command + = '$env:PSModulePath = ' + " ' $newPathFragment ' " + '+$env:PSModulePath;'
2017-03-27 12:46:39 +08:00
2016-08-10 03:03:30 +08:00
# Windows needs the execution policy adjusted
2020-01-16 03:03:48 +08:00
if ( $environment . IsWindows ) {
2018-02-17 03:13:23 +08:00
$command + = " Set-ExecutionPolicy -Scope Process Unrestricted; "
2016-08-10 03:03:30 +08:00
}
2018-02-17 03:13:23 +08:00
$command + = " Import-Module ' $Pester '; "
2016-09-16 10:22:18 +08:00
if ( $Unelevate )
{
2021-08-31 04:56:52 +08:00
if ( $environment . IsWindows ) {
$outputBufferFilePath = [ System.IO.Path ] :: GetTempFileName ( )
}
else {
# Azure DevOps agents do not have Temp folder setup on Ubuntu 20.04, hence using HOME directory
$outputBufferFilePath = ( Join-Path $env:HOME $ ( [ System.IO.Path ] :: GetRandomFileName ( ) ) )
}
2016-09-16 10:22:18 +08:00
}
2017-01-17 05:31:14 +08:00
2018-02-17 03:13:23 +08:00
$command + = " Invoke-Pester "
2016-08-10 03:03:30 +08:00
2018-02-17 03:13:23 +08:00
$command + = " -OutputFormat ${OutputFormat} -OutputFile ${OutputFile} "
2016-08-10 03:03:30 +08:00
if ( $ExcludeTag -and ( $ExcludeTag -ne " " ) ) {
2018-02-17 03:13:23 +08:00
$command + = " -ExcludeTag @(' " + ( $ { ExcludeTag } -join " ',' " ) + " ') "
2016-08-05 07:46:44 +08:00
}
2016-08-10 03:03:30 +08:00
if ( $Tag ) {
2018-02-17 03:13:23 +08:00
$command + = " -Tag @(' " + ( $ { Tag } -join " ',' " ) + " ') "
2016-08-10 03:03:30 +08:00
}
2016-12-02 03:23:14 +08:00
# sometimes we need to eliminate Pester output, especially when we're
# doing a daily build as the log file is too large
if ( $Quiet ) {
2018-02-17 03:13:23 +08:00
$command + = " -Quiet "
2016-12-02 03:23:14 +08:00
}
2017-03-07 05:13:34 +08:00
if ( $PassThru ) {
2018-02-17 03:13:23 +08:00
$command + = " -PassThru "
2017-03-07 05:13:34 +08:00
}
2016-08-10 03:03:30 +08:00
2018-02-17 03:13:23 +08:00
$command + = " ' " + ( $Path -join " ',' " ) + " ' "
2016-09-16 10:22:18 +08:00
if ( $Unelevate )
{
2018-02-17 03:13:23 +08:00
$command + = " *> $outputBufferFilePath ; '__UNELEVATED_TESTS_THE_END__' >> $outputBufferFilePath "
2016-09-16 10:22:18 +08:00
}
2018-02-17 03:13:23 +08:00
Write-Verbose $command
2016-08-31 02:47:27 +08:00
2017-09-20 05:56:32 +08:00
$script:nonewline = $true
$script:inerror = $false
function Write-Terse([string ] $line )
{
$trimmedline = $line . Trim ( )
if ( $trimmedline . StartsWith ( " [+] " ) ) {
Write-Host " + " -NoNewline -ForegroundColor Green
$script:nonewline = $true
$script:inerror = $false
}
elseif ( $trimmedline . StartsWith ( " [?] " ) ) {
Write-Host " ? " -NoNewline -ForegroundColor Cyan
$script:nonewline = $true
$script:inerror = $false
}
elseif ( $trimmedline . StartsWith ( " [!] " ) ) {
Write-Host " ! " -NoNewline -ForegroundColor Gray
$script:nonewline = $true
$script:inerror = $false
}
2018-03-09 02:17:23 +08:00
elseif ( $trimmedline . StartsWith ( " Executing script " ) ) {
# Skip lines where Pester reports that is executing a test script
return
}
2018-02-27 08:57:27 +08:00
elseif ( $trimmedline -match " ^\d+(\.\d+)?m?s $ " ) {
# Skip the time elapse like '12ms', '1ms', '1.2s' and '12.53s'
return
}
2017-09-20 05:56:32 +08:00
else {
if ( $script:nonewline ) {
Write-Host " `n " -NoNewline
}
if ( $trimmedline . StartsWith ( " [-] " ) -or $script:inerror ) {
Write-Host $line -ForegroundColor Red
$script:inerror = $true
}
elseif ( $trimmedline . StartsWith ( " VERBOSE: " ) ) {
Write-Host $line -ForegroundColor Yellow
$script:inerror = $false
}
elseif ( $trimmedline . StartsWith ( " Describing " ) -or $trimmedline . StartsWith ( " Context " ) ) {
Write-Host $line -ForegroundColor Magenta
$script:inerror = $false
}
else {
Write-Host $line -ForegroundColor Gray
}
$script:nonewline = $false
}
}
2018-08-04 02:20:14 +08:00
$PSFlags = @ ( " -noprofile " )
if ( -not [ string ] :: IsNullOrEmpty ( $ExperimentalFeatureName ) ) {
2021-08-31 04:56:52 +08:00
if ( $environment . IsWindows ) {
$configFile = [ System.IO.Path ] :: GetTempFileName ( )
}
else {
$configFile = ( Join-Path $env:HOME $ ( [ System.IO.Path ] :: GetRandomFileName ( ) ) )
}
2018-08-04 02:20:14 +08:00
$configFile = [ System.IO.Path ] :: ChangeExtension ( $configFile , " .json " )
## Create the config.json file to enable the given experimental feature.
## On Windows, we need to have 'RemoteSigned' declared for ExecutionPolicy because the ExecutionPolicy is 'Restricted' by default.
## On Unix, ExecutionPolicy is not supported, so we don't need to declare it.
2020-01-16 03:03:48 +08:00
if ( $environment . IsWindows ) {
2018-08-04 02:20:14 +08:00
$content = @"
{
" Microsoft.PowerShell:ExecutionPolicy " : " RemoteSigned " ,
" ExperimentalFeatures " : [
" $ExperimentalFeatureName "
]
}
" @
} else {
$content = @"
{
" ExperimentalFeatures " : [
" $ExperimentalFeatureName "
]
}
" @
}
Set-Content -Path $configFile -Value $content -Encoding Ascii -Force
$PSFlags = @ ( " -settings " , $configFile , " -noprofile " )
}
2019-04-03 02:54:11 +08:00
# -Wait is only available on Debug builds
# It is used to allow the debugger to attach before PowerShell
# runs pester in this case
if ( $Wait . IsPresent ) {
$PSFlags + = '-wait'
}
2016-08-10 03:03:30 +08:00
# To ensure proper testing, the module path must not be inherited by the spawned process
2017-08-17 03:07:45 +08:00
try {
$originalModulePath = $env:PSModulePath
2018-04-14 01:29:39 +08:00
$originalTelemetry = $env:POWERSHELL_TELEMETRY_OPTOUT
2019-08-16 07:13:53 +08:00
$env:POWERSHELL_TELEMETRY_OPTOUT = 'yes'
2017-08-17 03:07:45 +08:00
if ( $Unelevate )
{
2018-08-04 02:20:14 +08:00
Start-UnelevatedProcess -process $powershell -arguments ( $PSFlags + " -c $Command " )
2017-08-17 03:07:45 +08:00
$currentLines = 0
while ( $true )
2016-09-16 10:22:18 +08:00
{
2017-08-17 03:07:45 +08:00
$lines = Get-Content $outputBufferFilePath | Select-Object -Skip $currentLines
2017-09-20 05:56:32 +08:00
if ( $Terse )
{
foreach ( $line in $lines )
{
Write-Terse -line $line
}
}
else
{
$lines | Write-Host
}
2017-08-17 03:07:45 +08:00
if ( $lines | Where-Object { $_ -eq '__UNELEVATED_TESTS_THE_END__' } )
2016-09-16 10:22:18 +08:00
{
2017-08-17 03:07:45 +08:00
break
}
2016-09-16 10:22:18 +08:00
2020-05-07 20:00:30 +08:00
$count = ( $lines | Measure-Object ) . Count
2017-08-17 03:07:45 +08:00
if ( $count -eq 0 )
{
2017-08-22 06:23:52 +08:00
Start-Sleep -Seconds 1
2017-08-17 03:07:45 +08:00
}
else
{
$currentLines + = $count
2016-09-16 10:22:18 +08:00
}
}
2017-01-17 05:31:14 +08:00
}
2017-08-17 03:07:45 +08:00
else
{
2017-08-26 23:26:06 +08:00
if ( $PassThru . IsPresent )
{
2021-08-31 04:56:52 +08:00
if ( $environment . IsWindows ) {
$passThruFile = [ System.IO.Path ] :: GetTempFileName ( )
}
else {
$passThruFile = Join-Path $env:HOME $ ( [ System.IO.Path ] :: GetRandomFileName ( ) )
}
2017-09-12 03:16:58 +08:00
try
2017-08-26 23:26:06 +08:00
{
2018-08-04 02:20:14 +08:00
$command + = " | Export-Clixml -Path ' $passThruFile ' -Force "
2018-02-17 03:13:23 +08:00
2018-08-04 02:20:14 +08:00
$passThruCommand = { & $powershell $PSFlags -c $command }
2018-02-17 03:13:23 +08:00
if ( $Sudo . IsPresent ) {
2018-08-15 07:23:50 +08:00
# -E says to preserve the environment
$passThruCommand = { & sudo -E $powershell $PSFlags -c $command }
2017-09-20 05:56:32 +08:00
}
2018-02-17 03:13:23 +08:00
$writeCommand = { Write-Host $_ }
if ( $Terse )
2017-09-20 05:56:32 +08:00
{
2018-02-17 03:13:23 +08:00
$writeCommand = { Write-Terse $_ }
2017-09-20 05:56:32 +08:00
}
2018-02-17 03:13:23 +08:00
Start-NativeExecution -sb $passThruCommand | ForEach-Object $writeCommand
2017-08-26 23:26:06 +08:00
Import-Clixml -Path $passThruFile | Where-Object { $_ . TotalCount -is [ Int32 ] }
}
finally
{
2018-02-17 03:13:23 +08:00
Remove-Item $passThruFile -ErrorAction SilentlyContinue -Force
2017-08-26 23:26:06 +08:00
}
}
2017-09-12 03:16:58 +08:00
else
2017-08-26 23:26:06 +08:00
{
2017-09-20 05:56:32 +08:00
if ( $Terse )
{
2018-08-04 02:20:14 +08:00
Start-NativeExecution -sb { & $powershell $PSFlags -c $command } | ForEach-Object { Write-Terse -line $_ }
2017-09-20 05:56:32 +08:00
}
else
{
2018-08-04 02:20:14 +08:00
Start-NativeExecution -sb { & $powershell $PSFlags -c $command }
2017-09-20 05:56:32 +08:00
}
2017-08-26 23:26:06 +08:00
}
2017-08-17 03:07:45 +08:00
}
} finally {
$env:PSModulePath = $originalModulePath
2018-04-14 01:29:39 +08:00
$env:POWERSHELL_TELEMETRY_OPTOUT = $originalTelemetry
2017-08-17 03:07:45 +08:00
if ( $Unelevate )
{
Remove-Item $outputBufferFilePath
}
2016-08-10 03:03:30 +08:00
}
2017-08-17 03:07:45 +08:00
2018-08-15 07:23:50 +08:00
Publish-TestResults -Path $OutputFile -Title $Title
2016-08-31 02:47:27 +08:00
if ( $ThrowOnFailure )
{
Test-PSPesterResults -TestResultsFile $OutputFile
}
}
2018-08-15 07:23:50 +08:00
function Publish-TestResults
{
param (
[ Parameter ( Mandatory ) ]
[ string ]
$Title ,
[ Parameter ( Mandatory ) ]
[ ValidateScript ( { Test-Path -Path $_ } ) ]
[ string ]
$Path ,
[ ValidateSet ( 'NUnit' , 'XUnit' ) ]
[ string ]
$Type = 'NUnit'
)
# In VSTS publish Test Results
if ( $env:TF_BUILD )
{
2019-03-21 04:25:39 +08:00
$fileName = Split-Path -Leaf -Path $Path
2020-03-12 05:45:14 +08:00
$tempPath = $env:BUILD_ARTIFACTSTAGINGDIRECTORY
if ( ! $tempPath )
{
$tempPath = [ system.io.path ] :: GetTempPath ( )
}
$tempFilePath = Join-Path -Path $tempPath -ChildPath $fileName
2019-03-21 04:25:39 +08:00
# NUnit allowed values are: Passed, Failed, Inconclusive or Ignored (the spec says Skipped but it doesn' work with Azure DevOps)
# https://github.com/nunit/docs/wiki/Test-Result-XML-Format
# Azure DevOps Reporting is so messed up for NUnit V2 and doesn't follow their own spec
# https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/test/publish-test-results?view=azure-devops&tabs=yaml
# So, we will map skipped to the actual value in the NUnit spec and they will ignore all results for tests which were not executed
Get-Content $Path | ForEach-Object {
$_ -replace 'result="Ignored"' , 'result="Skipped"'
} | Out-File -FilePath $tempFilePath -Encoding ascii -Force
2018-08-17 04:11:24 +08:00
2019-04-02 07:47:55 +08:00
# If we attempt to upload a result file which has no test cases in it, then vsts will produce a warning
# so check to be sure we actually have a result file that contains test cases to upload.
2022-06-07 00:55:33 +08:00
# If the "test-case" count is greater than 0, then we have results.
2019-04-02 07:47:55 +08:00
# Regardless, we want to upload this as an artifact, so this logic doesn't pertain to that.
if ( @ ( ( [ xml ] ( Get-Content $Path ) ) . SelectNodes ( " .//test-case " ) ) . Count -gt 0 -or $Type -eq 'XUnit' ) {
2019-04-26 05:01:05 +08:00
Write-Host " ##vso[results.publish type= $Type ;mergeResults=true;runTitle= $Title ;publishRunAttachments=true;resultFiles= $tempFilePath ;failTaskOnFailedTests=true] "
2019-04-02 07:47:55 +08:00
}
2019-03-21 04:25:39 +08:00
$resolvedPath = ( Resolve-Path -Path $Path ) . ProviderPath
2019-01-23 10:18:44 +08:00
Write-Host " ##vso[artifact.upload containerfolder=testResults;artifactname=testResults] $resolvedPath "
2018-08-15 07:23:50 +08:00
}
}
2016-09-16 10:22:18 +08:00
function script: Start-UnelevatedProcess
{
param (
[ string ] $process ,
[ string[] ] $arguments
)
2020-01-16 03:03:48 +08:00
if ( -not $environment . IsWindows )
2016-09-16 10:22:18 +08:00
{
throw " Start-UnelevatedProcess is currently not supported on non-Windows platforms "
}
runas . exe / trustlevel : 0x20000 " $process $arguments "
}
2016-12-02 03:23:14 +08:00
function Show-PSPesterError
{
2017-08-26 23:26:06 +08:00
[ CmdletBinding ( DefaultParameterSetName = 'xml' ) ]
2017-09-12 03:16:58 +08:00
param (
2017-08-26 23:26:06 +08:00
[ Parameter ( ParameterSetName = 'xml' , Mandatory ) ]
[ Xml.XmlElement ] $testFailure ,
[ Parameter ( ParameterSetName = 'object' , Mandatory ) ]
[ PSCustomObject ] $testFailureObject
)
2017-09-12 03:16:58 +08:00
2020-01-14 03:19:12 +08:00
if ( $PSCmdlet . ParameterSetName -eq 'xml' )
2017-08-26 23:26:06 +08:00
{
$description = $testFailure . description
$name = $testFailure . name
$message = $testFailure . failure . message
2020-01-14 03:16:45 +08:00
$StackTrace = $testFailure . failure . " stack-trace "
2017-08-26 23:26:06 +08:00
}
2020-01-14 03:19:12 +08:00
elseif ( $PSCmdlet . ParameterSetName -eq 'object' )
2017-08-26 23:26:06 +08:00
{
$description = $testFailureObject . Describe + '/' + $testFailureObject . Context
$name = $testFailureObject . Name
$message = $testFailureObject . FailureMessage
2020-01-14 03:16:45 +08:00
$StackTrace = $testFailureObject . StackTrace
2017-08-26 23:26:06 +08:00
}
else
{
throw 'Unknown Show-PSPester parameter set'
}
2020-06-19 02:48:06 +08:00
Write-Log -isError -message ( " Description: " + $description )
Write-Log -isError -message ( " Name: " + $name )
Write-Log -isError -message " message: "
Write-Log -isError -message $message
Write-Log -isError -message " stack-trace: "
Write-Log -isError -message $StackTrace
2017-08-26 23:26:06 +08:00
2016-12-02 03:23:14 +08:00
}
2017-12-01 06:44:41 +08:00
function Test-XUnitTestResults
{
param (
[ Parameter ( Mandatory ) ]
[ ValidateNotNullOrEmpty ( ) ]
[ string ] $TestResultsFile
)
if ( -not ( Test-Path $TestResultsFile ) )
{
throw " File not found $TestResultsFile "
}
try
{
$results = [ xml ] ( Get-Content $TestResultsFile )
}
catch
{
throw " Cannot convert $TestResultsFile to xml : $( $_ . message ) "
}
2020-07-30 01:17:46 +08:00
$failedTests = $results . assemblies . assembly . collection . test | Where-Object result -eq " fail "
2017-12-01 06:44:41 +08:00
if ( -not $failedTests )
{
return $true
}
foreach ( $failure in $failedTests )
{
2020-07-30 01:17:46 +08:00
$description = $failure . type
$name = $failure . method
$message = $failure . failure . message
$StackTrace = $failure . failure . 'stack-trace'
2017-12-01 06:44:41 +08:00
2020-06-19 02:48:06 +08:00
Write-Log -isError -message ( " Description: " + $description )
Write-Log -isError -message ( " Name: " + $name )
Write-Log -isError -message " message: "
Write-Log -isError -message $message
Write-Log -isError -message " stack-trace: "
Write-Log -isError -message $StackTrace
2020-07-30 01:17:46 +08:00
Write-Log -isError -message " "
2017-12-01 06:44:41 +08:00
}
2020-07-30 01:17:46 +08:00
throw " $( $results . assemblies . assembly . failed ) tests failed "
2017-12-01 06:44:41 +08:00
}
2016-08-31 02:47:27 +08:00
#
# Read the test result file and
2017-01-17 05:31:14 +08:00
# Throw if a test failed
2016-08-31 02:47:27 +08:00
function Test-PSPesterResults
{
2017-08-26 23:26:06 +08:00
[ CmdletBinding ( DefaultParameterSetName = 'file' ) ]
2016-08-31 02:47:27 +08:00
param (
2017-08-26 23:26:06 +08:00
[ Parameter ( ParameterSetName = 'file' ) ]
2018-08-04 02:20:14 +08:00
[ string ] $TestResultsFile = " pester-tests.xml " ,
2017-08-26 23:26:06 +08:00
[ Parameter ( ParameterSetName = 'file' ) ]
2018-08-04 02:20:14 +08:00
[ string ] $TestArea = 'test/powershell' ,
[ Parameter ( ParameterSetName = 'PesterPassThruObject' , Mandatory ) ]
[ pscustomobject ] $ResultObject ,
[ Parameter ( ParameterSetName = 'PesterPassThruObject' ) ]
[ switch ] $CanHaveNoResult
)
2016-08-10 03:03:30 +08:00
2020-01-14 03:19:12 +08:00
if ( $PSCmdlet . ParameterSetName -eq 'file' )
2016-08-31 02:47:27 +08:00
{
2017-08-26 23:26:06 +08:00
if ( ! ( Test-Path $TestResultsFile ) )
{
throw " Test result file ' $testResultsFile ' not found for $TestArea . "
}
2016-08-31 02:47:27 +08:00
2020-05-07 20:00:30 +08:00
$x = [ xml ] ( Get-Content -Raw $testResultsFile )
2017-08-26 23:26:06 +08:00
if ( [ int ] $x . 'test-results' . failures -gt 0 )
{
2020-06-19 02:48:06 +08:00
Write-Log -isError -message " TEST FAILURES "
2017-08-26 23:26:06 +08:00
# switch between methods, SelectNode is not available on dotnet core
2017-09-12 03:16:58 +08:00
if ( " System.Xml.XmlDocumentXPathExtensions " -as [ Type ] )
2017-08-26 23:26:06 +08:00
{
$failures = [ System.Xml.XmlDocumentXPathExtensions ] :: SelectNodes ( $x . " test-results " , './/test-case[@result = "Failure"]' )
}
2017-09-12 03:16:58 +08:00
else
2017-08-26 23:26:06 +08:00
{
$failures = $x . SelectNodes ( './/test-case[@result = "Failure"]' )
}
foreach ( $testfail in $failures )
{
Show-PSPesterError -testFailure $testfail
}
throw " $( $x . 'test-results' . failures ) tests in $TestArea failed "
2017-01-11 06:42:27 +08:00
}
2017-08-26 23:26:06 +08:00
}
2020-01-14 03:19:12 +08:00
elseif ( $PSCmdlet . ParameterSetName -eq 'PesterPassThruObject' )
2017-08-26 23:26:06 +08:00
{
2022-03-23 23:04:07 +08:00
if ( -not $CanHaveNoResult )
2017-08-26 23:26:06 +08:00
{
2022-03-23 23:04:07 +08:00
$noTotalCountMember = if ( $null -eq ( Get-Member -InputObject $ResultObject -Name 'TotalCount' ) ) { $true } else { $false }
if ( $noTotalCountMember )
{
Write-Verbose -Verbose -Message " `$ ResultObject has no 'TotalCount' property "
Write-Verbose -Verbose " $( $ResultObject | Out-String ) "
}
if ( $noTotalCountMember -or $ResultObject . TotalCount -le 0 )
{
throw 'NO TESTS RUN'
}
2017-01-11 06:42:27 +08:00
}
2017-08-26 23:26:06 +08:00
elseif ( $ResultObject . FailedCount -gt 0 )
2016-12-02 03:23:14 +08:00
{
2020-06-19 02:48:06 +08:00
Write-Log -isError -message 'TEST FAILURES'
2017-09-14 05:14:08 +08:00
2017-08-26 23:26:06 +08:00
$ResultObject . TestResult | Where-Object { $_ . Passed -eq $false } | ForEach-Object {
Show-PSPesterError -testFailureObject $_
}
2017-09-14 05:14:08 +08:00
throw " $( $ResultObject . FailedCount ) tests in $TestArea failed "
2016-12-02 03:23:14 +08:00
}
2016-04-02 13:01:45 +08:00
}
}
2016-04-02 11:45:32 +08:00
function Start-PSxUnit {
2017-12-01 06:44:41 +08:00
[ CmdletBinding ( ) ] param (
2019-02-23 03:57:10 +08:00
[ string ] $xUnitTestResultsFile = " xUnitResults.xml "
2017-12-01 06:44:41 +08:00
)
2016-04-15 06:09:35 +08:00
2016-06-21 02:59:14 +08:00
# Add .NET CLI tools to PATH
Find-Dotnet
2016-04-02 13:01:37 +08:00
$Content = Split-Path -Parent ( Get-PSOutput )
2016-06-02 02:10:29 +08:00
if ( -not ( Test-Path $Content ) ) {
throw " PowerShell must be built before running tests! "
}
2022-07-07 08:35:59 +08:00
$originalDOTNET_ROOT = $env:DOTNET_ROOT
2016-04-02 11:45:32 +08:00
try {
2018-12-14 06:22:07 +08:00
Push-Location $PSScriptRoot / test / xUnit
2017-12-01 06:44:41 +08:00
2022-07-07 08:35:59 +08:00
# Add workaround to unblock xUnit testing see issue: https://github.com/dotnet/sdk/issues/26462
$dotnetPath = if ( $environment . IsWindows ) { " $env:LocalAppData \Microsoft\dotnet " } else { " $env:HOME /.dotnet " }
$env:DOTNET_ROOT = $dotnetPath
2016-04-26 05:11:13 +08:00
# Path manipulation to obtain test project output directory
2017-12-01 06:44:41 +08:00
2020-01-16 03:03:48 +08:00
if ( -not $environment . IsWindows )
2017-12-01 06:44:41 +08:00
{
2020-01-16 03:03:48 +08:00
if ( $environment . IsMacOS )
2017-12-01 06:44:41 +08:00
{
$nativeLib = " $Content /libpsl-native.dylib "
}
else
{
$nativeLib = " $Content /libpsl-native.so "
}
$requiredDependencies = @ (
$nativeLib ,
" $Content /Microsoft.Management.Infrastructure.dll " ,
" $Content /System.Text.Encoding.CodePages.dll "
)
2016-04-19 11:22:20 +08:00
2017-12-01 06:44:41 +08:00
if ( ( Test-Path $requiredDependencies ) -notcontains $false )
{
2018-05-15 06:01:44 +08:00
$options = Get-PSOptions -DefaultToNew
2017-12-01 06:44:41 +08:00
$Destination = " bin/ $( $options . configuration ) / $( $options . framework ) "
New-Item $Destination -ItemType Directory -Force > $null
Copy-Item -Path $requiredDependencies -Destination $Destination -Force
}
else
{
throw " Dependencies $requiredDependencies not met. "
}
2016-04-02 11:45:32 +08:00
}
2018-01-04 04:43:28 +08:00
2019-02-23 03:57:10 +08:00
if ( Test-Path $xUnitTestResultsFile ) {
Remove-Item $xUnitTestResultsFile -Force -ErrorAction SilentlyContinue
2018-12-14 06:22:07 +08:00
}
2018-08-14 07:18:49 +08:00
2019-02-23 03:57:10 +08:00
# We run the xUnit tests sequentially to avoid race conditions caused by manipulating the config.json file.
# xUnit tests run in parallel by default. To make them run sequentially, we need to define the 'xunit.runner.json' file.
dotnet test - -configuration $Options . configuration - -test -adapter -path: . " --logger:xunit;LogFilePath= $xUnitTestResultsFile "
2018-08-14 07:18:49 +08:00
2019-02-23 03:57:10 +08:00
Publish-TestResults -Path $xUnitTestResultsFile -Type 'XUnit' -Title 'Xunit Sequential'
2017-12-01 06:44:41 +08:00
}
finally {
2022-07-07 08:35:59 +08:00
$env:DOTNET_ROOT = $originalDOTNET_ROOT
2016-04-02 11:45:32 +08:00
Pop-Location
}
}
2016-09-10 05:35:54 +08:00
function Install-Dotnet {
[ CmdletBinding ( ) ]
param (
2017-06-22 00:32:06 +08:00
[ string ] $Channel = $dotnetCLIChannel ,
[ string ] $Version = $dotnetCLIRequiredVersion ,
2021-07-08 01:10:40 +08:00
[ string ] $Quality = $dotnetCLIQuality ,
2022-04-13 05:26:52 +08:00
[ switch ] $RemovePreviousVersion ,
2020-05-01 02:28:32 +08:00
[ switch ] $NoSudo ,
2020-08-14 05:52:00 +08:00
[ string ] $InstallDir ,
[ string ] $AzureFeed ,
[ string ] $FeedCredential
2016-09-10 05:35:54 +08:00
)
2021-10-29 02:40:52 +08:00
Write-Verbose -Verbose " In install-dotnet "
2016-09-10 05:35:54 +08:00
# This allows sudo install to be optional; needed when running in containers / as root
# Note that when it is null, Invoke-Expression (but not &) must be used to interpolate properly
$sudo = if ( ! $NoSudo ) { " sudo " }
2022-03-31 07:17:48 +08:00
# $installObtainUrl = "https://dot.net/v1"
$installObtainUrl = " https://dotnet.microsoft.com/download/dotnet/scripts/v1 "
2019-08-09 02:37:25 +08:00
$uninstallObtainUrl = " https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain "
2016-09-10 05:35:54 +08:00
# Install for Linux and OS X
2020-01-16 03:03:48 +08:00
if ( $environment . IsLinux -or $environment . IsMacOS ) {
2021-02-20 03:20:02 +08:00
$wget = Get-Command -Name wget -CommandType Application -TotalCount 1 -ErrorAction Stop
2020-01-16 03:03:48 +08:00
2022-04-13 05:26:52 +08:00
# Attempt to uninstall previous dotnet packages if requested
if ( $RemovePreviousVersion ) {
$uninstallScript = if ( $environment . IsLinux -and $environment . IsUbuntu ) {
" dotnet-uninstall-debian-packages.sh "
} elseif ( $environment . IsMacOS ) {
" dotnet-uninstall-pkgs.sh "
}
2016-09-10 05:35:54 +08:00
2022-04-13 05:26:52 +08:00
if ( $uninstallScript ) {
Start-NativeExecution {
& $wget $uninstallObtainUrl / uninstall / $uninstallScript
Invoke-Expression " $sudo bash ./ $uninstallScript "
}
} else {
Write-Warning " This script only removes prior versions of dotnet for Ubuntu and OS X "
2016-09-10 05:35:54 +08:00
}
}
2021-10-29 02:40:52 +08:00
Write-Verbose -Verbose " Invoking install script "
2016-12-08 10:29:21 +08:00
# Install new dotnet 1.1.0 preview packages
2016-09-10 05:35:54 +08:00
$installScript = " dotnet-install.sh "
2021-10-29 02:40:52 +08:00
Write-Verbose -Message " downloading install script from $installObtainUrl / $installScript ... " -Verbose
2021-02-20 03:20:02 +08:00
& $wget $installObtainUrl / $installScript
if ( ( Get-ChildItem " ./ $installScript " ) . Length -eq 0 ) {
throw " ./ $installScript was 0 length "
}
2020-05-01 02:28:32 +08:00
2021-07-08 01:10:40 +08:00
if ( $Version ) {
2022-06-29 02:00:34 +08:00
$bashArgs = @ ( " ./ $installScript " , '-v' , $Version )
2021-07-08 01:10:40 +08:00
}
elseif ( $Channel ) {
$bashArgs = @ ( " ./ $installScript " , '-c' , $Channel , '-q' , $Quality )
}
2020-08-14 05:52:00 +08:00
if ( $InstallDir ) {
$bashArgs + = @ ( '-i' , $InstallDir )
}
if ( $AzureFeed ) {
2021-10-29 02:40:52 +08:00
$bashArgs + = @ ( '-AzureFeed' , $AzureFeed )
}
if ( $FeedCredential ) {
$bashArgs + = @ ( '-FeedCredential' , $FeedCredential )
2020-05-01 02:28:32 +08:00
}
2020-08-14 05:52:00 +08:00
2022-04-13 05:26:52 +08:00
$bashArgs + = @ ( '-skipnonversionedfiles' )
2021-10-29 02:40:52 +08:00
$bashArgs | Out-String | Write-Verbose -Verbose
Start-NativeExecution {
2020-08-14 05:52:00 +08:00
bash @bashArgs
2016-09-10 05:35:54 +08:00
}
2020-01-16 03:03:48 +08:00
} elseif ( $environment . IsWindows ) {
2016-09-10 05:35:54 +08:00
Remove-Item -ErrorAction SilentlyContinue -Recurse -Force ~ \ AppData \ Local \ Microsoft \ dotnet
$installScript = " dotnet-install.ps1 "
2019-07-23 06:21:38 +08:00
Invoke-WebRequest -Uri $installObtainUrl / $installScript -OutFile $installScript
2020-01-16 03:03:48 +08:00
if ( -not $environment . IsCoreCLR ) {
2022-02-17 01:56:41 +08:00
$installArgs = @ { }
2021-07-21 14:34:39 +08:00
if ( $Version ) {
$installArgs + = @ { Version = $Version }
} elseif ( $Channel ) {
2022-02-17 01:56:41 +08:00
$installArgs + = @ { Quality = $Quality }
2021-07-21 14:34:39 +08:00
$installArgs + = @ { Channel = $Channel }
}
2020-08-14 05:52:00 +08:00
if ( $InstallDir ) {
$installArgs + = @ { InstallDir = $InstallDir }
}
if ( $AzureFeed ) {
2021-10-29 02:40:52 +08:00
$installArgs + = @ { AzureFeed = $AzureFeed }
2020-08-14 05:52:00 +08:00
}
2021-10-29 02:40:52 +08:00
if ( $FeedCredential ) {
$installArgs + = @ { FeedCredential = $FeedCredential }
}
2022-04-13 05:26:52 +08:00
$installArgs + = @ { SkipNonVersionedFiles = $true }
2021-10-29 02:40:52 +08:00
$installArgs | Out-String | Write-Verbose -Verbose
2020-08-14 05:52:00 +08:00
& . / $installScript @installArgs
}
else {
2017-07-01 04:07:14 +08:00
# dotnet-install.ps1 uses APIs that are not supported in .NET Core, so we run it with Windows PowerShell
$fullPSPath = Join-Path -Path $env:windir -ChildPath " System32\WindowsPowerShell\v1.0\powershell.exe "
2021-12-01 03:23:42 +08:00
$fullDotnetInstallPath = Join-Path -Path ( Convert-Path -Path $PWD . Path ) -ChildPath $installScript
2021-07-08 01:10:40 +08:00
2021-10-29 02:40:52 +08:00
if ( $Version ) {
2022-02-17 01:56:41 +08:00
$psArgs = @ ( '-NoLogo' , '-NoProfile' , '-File' , $fullDotnetInstallPath , '-Version' , $Version )
2021-10-29 02:40:52 +08:00
}
elseif ( $Channel ) {
$psArgs = @ ( '-NoLogo' , '-NoProfile' , '-File' , $fullDotnetInstallPath , '-Channel' , $Channel , '-Quality' , $Quality )
}
2020-08-14 05:52:00 +08:00
2021-10-29 02:40:52 +08:00
if ( $InstallDir ) {
$psArgs + = @ ( '-InstallDir' , $InstallDir )
}
2020-08-14 05:52:00 +08:00
2021-10-29 02:40:52 +08:00
if ( $AzureFeed ) {
$psArgs + = @ ( '-AzureFeed' , $AzureFeed )
}
if ( $FeedCredential ) {
$psArgs + = @ ( '-FeedCredential' , $FeedCredential )
}
2020-08-14 05:52:00 +08:00
2022-04-13 05:26:52 +08:00
$psArgs + = @ ( '-SkipNonVersionedFiles' )
2022-05-10 08:51:07 +08:00
$psArgs -join ' ' | Write-Verbose -Verbose
2021-10-29 02:40:52 +08:00
Start-NativeExecution {
2020-08-14 05:52:00 +08:00
& $fullPSPath @psArgs
2020-05-01 02:28:32 +08:00
}
2017-07-01 04:07:14 +08:00
}
2016-09-10 05:35:54 +08:00
}
}
2017-01-07 02:04:18 +08:00
function Get-RedHatPackageManager {
2022-05-13 01:03:40 +08:00
if ( $environment . IsCentOS -or ( Get-Command -Name yum -CommandType Application -ErrorAction SilentlyContinue ) ) {
2017-03-08 07:03:38 +08:00
" yum install -y -q "
2022-05-13 01:03:40 +08:00
} elseif ( $environment . IsFedora -or ( Get-Command -Name dnf -CommandType Application -ErrorAction SilentlyContinue ) ) {
2017-03-08 07:03:38 +08:00
" dnf install -y -q "
2017-01-07 02:04:18 +08:00
} else {
throw " Error determining package manager for this distribution. "
}
}
2016-09-10 05:35:54 +08:00
2022-01-28 02:45:38 +08:00
function Install-GlobalGem {
param (
[ Parameter ( ) ]
[ string ]
$Sudo = " " ,
[ Parameter ( Mandatory ) ]
[ string ]
$GemName ,
[ Parameter ( Mandatory ) ]
[ string ]
$GemVersion
)
try {
# We cannot guess if the user wants to run gem install as root on linux and windows,
# but macOs usually requires sudo
$gemsudo = ''
if ( $environment . IsMacOS -or $env:TF_BUILD ) {
$gemsudo = $sudo
}
Start-NativeExecution ( [ ScriptBlock ] :: Create ( " $gemsudo gem install $GemName -v $GemVersion --no-document " ) )
} catch {
Write-Warning " Installation of gem $GemName $GemVersion failed! Must resolve manually. "
$logs = Get-ChildItem " /var/lib/gems/*/extensions/x86_64-linux/*/ $GemName -*/gem_make.out " | Select-Object -ExpandProperty FullName
foreach ( $log in $logs ) {
Write-Verbose " Contents of: $log " -Verbose
Get-Content -Raw -Path $log -ErrorAction Ignore | ForEach-Object { Write-Verbose $_ -Verbose }
Write-Verbose " END Contents of: $log " -Verbose
}
throw
}
}
2016-04-14 06:11:38 +08:00
function Start-PSBootstrap {
2021-06-12 05:02:04 +08:00
[ CmdletBinding ( ) ]
2016-07-23 05:31:32 +08:00
param (
2017-06-22 00:32:06 +08:00
[ string ] $Channel = $dotnetCLIChannel ,
Move powershell to .NET Core 2.0 (#3556)
This change moves powershell to .NET Core 2.0. Major changes are:
1. PowerShell assemblies are now targeting `netcoreapp2.0`. We are using `microsoft.netcore.app-2.0.0-preview1-001913-00`, which is from dotnet-core build 4/4/17. We cannot target `netstandard2.0` because the packages `System.Reflection.Emit` and `System.Reflection.Emit.Lightweight`, which are needed for powershell class, cannot be referenced when targeting `netstandard2.0`.
2. Refactor code to remove most CLR stub types and extension types.
3. Update build scripts to enable CI builds. The `-cache` section is specified to depend on `appveyor.yml`, so the cache will be invalidated if `appveyor.yml` is changed.
4. Ship `netcoreapp` reference assemblies with powershell to fix the issues in `Add-Type` (#2764). By default `Add-Type` will reference all those reference assemblies when compiling C# code. If `-ReferenceAssembly` is specified, then we search reference assemblies first, then the framework runtime assemblies, and lastly the loaded assemblies (possibly a third-party one that was already loaded).
5. `dotnet publish` generates executable on Unix platforms, but doesn't set "x" permission and thus it cannot execute. Currently, the "x" permission is set in the build script, `dotnet/cli` issue [#6286](https://github.com/dotnet/cli/issues/6286) is tracking this.
6. Replace the use of some APIs with the ones that take `SecureString`.
7. osx.10.12 is required to update to `netcoreapp2.0` because `dotnet-cli` 2.0.0-preview only works on osx.10.12.
8. Add dependency to `System.ValueTuple` to work around a ambiguous type identity issue in coreclr. The issue is tracked by `dotnet/corefx` [#17797](https://github.com/dotnet/corefx/issues/17797). When moving to newer version of `netcoreapp2.0`, we need to verify if this dependency is still needed.
2017-04-18 02:52:38 +08:00
# we currently pin dotnet-cli version, and will
# update it when more stable version comes out.
2017-06-22 00:32:06 +08:00
[ string ] $Version = $dotnetCLIRequiredVersion ,
2016-07-23 05:31:32 +08:00
[ switch ] $Package ,
2016-09-09 07:21:20 +08:00
[ switch ] $NoSudo ,
2017-09-12 03:16:58 +08:00
[ switch ] $BuildLinuxArm ,
2016-07-23 05:31:32 +08:00
[ switch ] $Force
2016-06-15 04:33:19 +08:00
)
2016-04-14 06:11:38 +08:00
2020-06-19 02:48:06 +08:00
Write-Log -message " Installing PowerShell build dependencies "
2016-04-14 06:11:38 +08:00
2016-06-11 05:02:25 +08:00
Push-Location $PSScriptRoot / tools
2016-04-14 06:11:38 +08:00
2021-10-29 02:40:52 +08:00
if ( $dotnetSDKVersionOveride ) {
$Version = $dotnetSDKVersionOveride
}
2016-06-11 05:02:25 +08:00
try {
2020-01-16 03:03:48 +08:00
if ( $environment . IsLinux -or $environment . IsMacOS ) {
2017-07-26 07:50:27 +08:00
# This allows sudo install to be optional; needed when running in containers / as root
# Note that when it is null, Invoke-Expression (but not &) must be used to interpolate properly
$sudo = if ( ! $NoSudo ) { " sudo " }
2020-02-04 01:44:10 +08:00
if ( $BuildLinuxArm -and $environment . IsLinux -and -not $environment . IsUbuntu ) {
2017-09-12 03:16:58 +08:00
Write-Error " Cross compiling for linux-arm is only supported on Ubuntu environment "
return
}
2017-07-26 07:50:27 +08:00
# Install ours and .NET's dependencies
$Deps = @ ( )
2020-02-04 01:44:10 +08:00
if ( $environment . IsLinux -and $environment . IsUbuntu ) {
2017-07-26 07:50:27 +08:00
# Build tools
2022-01-27 03:20:08 +08:00
$Deps + = " curl " , " wget "
2017-09-12 03:16:58 +08:00
2017-07-26 07:50:27 +08:00
# .NET Core required runtime libraries
2020-01-16 03:03:48 +08:00
if ( $environment . IsUbuntu16 ) { $Deps + = " libicu55 " }
elseif ( $environment . IsUbuntu18 ) { $Deps + = " libicu60 " }
2016-08-12 04:38:35 +08:00
2017-07-26 07:50:27 +08:00
# Packaging tools
2022-01-28 02:45:38 +08:00
if ( $Package ) { $Deps + = " ruby-dev " , " groff " , " libffi-dev " , " rpm " , " g++ " , " make " }
2016-08-12 04:38:35 +08:00
2017-07-26 07:50:27 +08:00
# Install dependencies
2018-03-13 06:59:58 +08:00
# change the fontend from apt-get to noninteractive
$originalDebianFrontEnd = $env:DEBIAN_FRONTEND
$env:DEBIAN_FRONTEND = 'noninteractive'
try {
Start-NativeExecution {
Invoke-Expression " $sudo apt-get update -qq "
Invoke-Expression " $sudo apt-get install -y -qq $Deps "
}
}
finally {
# change the apt frontend back to the original
$env:DEBIAN_FRONTEND = $originalDebianFrontEnd
2017-07-26 07:50:27 +08:00
}
2020-02-04 01:44:10 +08:00
} elseif ( $environment . IsLinux -and $environment . IsRedHatFamily ) {
2017-07-26 07:50:27 +08:00
# Build tools
2022-01-27 03:20:08 +08:00
$Deps + = " which " , " curl " , " wget "
2016-08-12 04:38:35 +08:00
2017-07-26 07:50:27 +08:00
# .NET Core required runtime libraries
2022-05-13 01:03:40 +08:00
$Deps + = " libicu " , " openssl-libs "
2016-08-12 04:38:35 +08:00
2017-07-26 07:50:27 +08:00
# Packaging tools
2022-01-28 02:45:38 +08:00
if ( $Package ) { $Deps + = " ruby-devel " , " rpm-build " , " groff " , 'libffi-devel' , " gcc-c++ " }
2016-08-12 04:38:35 +08:00
2017-07-26 07:50:27 +08:00
$PackageManager = Get-RedHatPackageManager
2017-01-07 02:04:18 +08:00
2017-07-26 07:50:27 +08:00
$baseCommand = " $sudo $PackageManager "
2017-03-08 07:03:38 +08:00
2017-07-26 07:50:27 +08:00
# On OpenSUSE 13.2 container, sudo does not exist, so don't use it if not needed
if ( $NoSudo )
{
$baseCommand = $PackageManager
}
2017-03-08 07:03:38 +08:00
2018-01-23 06:58:17 +08:00
# Install dependencies
Start-NativeExecution {
Invoke-Expression " $baseCommand $Deps "
}
2020-02-04 01:44:10 +08:00
} elseif ( $environment . IsLinux -and $environment . IsSUSEFamily ) {
2018-01-23 06:58:17 +08:00
# Build tools
2022-01-27 03:20:08 +08:00
$Deps + = " wget "
2018-01-23 06:58:17 +08:00
# Packaging tools
2022-01-28 02:45:38 +08:00
if ( $Package ) { $Deps + = " ruby-devel " , " rpmbuild " , " groff " , 'libffi-devel' , " gcc " }
2018-01-23 06:58:17 +08:00
$PackageManager = " zypper --non-interactive install "
$baseCommand = " $sudo $PackageManager "
# On OpenSUSE 13.2 container, sudo does not exist, so don't use it if not needed
if ( $NoSudo )
{
$baseCommand = $PackageManager
}
2017-07-26 07:50:27 +08:00
# Install dependencies
Start-NativeExecution {
Invoke-Expression " $baseCommand $Deps "
}
2020-01-16 03:03:48 +08:00
} elseif ( $environment . IsMacOS ) {
if ( $environment . UsingHomebrew ) {
2019-10-10 06:02:05 +08:00
$PackageManager = " brew "
2020-01-16 03:03:48 +08:00
} elseif ( $environment . UsingMacports ) {
2019-10-10 06:02:05 +08:00
$PackageManager = " $sudo port "
}
2016-08-12 04:38:35 +08:00
2021-10-27 02:50:57 +08:00
# wget for downloading dotnet
$Deps + = " wget "
2017-07-26 07:50:27 +08:00
# .NET Core required runtime libraries
$Deps + = " openssl "
2016-08-12 04:38:35 +08:00
2017-07-26 07:50:27 +08:00
# Install dependencies
# ignore exitcode, because they may be already installed
2019-10-10 06:02:05 +08:00
Start-NativeExecution ( [ ScriptBlock ] :: Create ( " $PackageManager install $Deps " ) ) -IgnoreExitcode
2020-02-04 01:44:10 +08:00
} elseif ( $environment . IsLinux -and $environment . IsAlpine ) {
2022-01-27 03:20:08 +08:00
$Deps + = 'libunwind' , 'libcurl' , 'bash' , 'build-base' , 'git' , 'curl' , 'wget'
2018-11-28 02:45:49 +08:00
Start-NativeExecution {
Invoke-Expression " apk add $Deps "
}
2017-07-26 07:50:27 +08:00
}
2016-04-14 06:11:38 +08:00
2017-07-26 07:50:27 +08:00
# Install [fpm](https://github.com/jordansissel/fpm) and [ronn](https://github.com/rtomayko/ronn)
if ( $Package ) {
2022-01-28 02:45:38 +08:00
Install-GlobalGem -Sudo $sudo -GemName " ffi " -GemVersion " 1.12.0 "
Install-GlobalGem -Sudo $sudo -GemName " fpm " -GemVersion " 1.11.0 "
Install-GlobalGem -Sudo $sudo -GemName " ronn " -GemVersion " 0.7.3 "
2016-09-09 07:21:43 +08:00
}
2016-07-06 02:03:08 +08:00
}
2021-10-29 02:40:52 +08:00
Write-Verbose -Verbose " Calling Find-Dotnet from Start-PSBootstrap "
2017-10-11 05:01:01 +08:00
# Try to locate dotnet-SDK before installing it
Find-Dotnet
2021-10-29 02:40:52 +08:00
Write-Verbose -Verbose " Back from calling Find-Dotnet from Start-PSBootstrap "
2017-07-26 07:50:27 +08:00
# Install dotnet-SDK
2017-07-19 02:39:04 +08:00
$dotNetExists = precheck 'dotnet' $null
$dotNetVersion = [ string ] :: Empty
if ( $dotNetExists ) {
2022-05-12 00:49:43 +08:00
$dotNetVersion = Find-RequiredSDK $dotnetCLIRequiredVersion
2017-07-19 02:39:04 +08:00
}
if ( ! $dotNetExists -or $dotNetVersion -ne $dotnetCLIRequiredVersion -or $Force . IsPresent ) {
if ( $Force . IsPresent ) {
2020-06-19 02:48:06 +08:00
Write-Log -message " Installing dotnet due to -Force. "
2017-07-19 02:39:04 +08:00
}
2020-01-16 03:03:48 +08:00
elseif ( ! $dotNetExists ) {
2020-06-19 02:48:06 +08:00
Write-Log -message " dotnet not present. Installing dotnet. "
2017-07-19 02:39:04 +08:00
}
else {
2020-06-19 02:48:06 +08:00
Write-Log -message " dotnet out of date ( $dotNetVersion ). Updating dotnet. "
2017-07-19 02:39:04 +08:00
}
$DotnetArguments = @ { Channel = $Channel ; Version = $Version ; NoSudo = $NoSudo }
2021-10-29 02:40:52 +08:00
if ( $dotnetAzureFeed ) {
$null = $DotnetArguments . Add ( " AzureFeed " , $dotnetAzureFeed )
$null = $DotnetArguments . Add ( " FeedCredential " , $null )
}
2017-07-19 02:39:04 +08:00
Install-Dotnet @DotnetArguments
}
2017-07-26 07:50:27 +08:00
else {
2020-06-19 02:48:06 +08:00
Write-Log -message " dotnet is already installed. Skipping installation. "
2017-07-19 02:39:04 +08:00
}
2016-04-14 07:41:50 +08:00
2017-07-26 07:50:27 +08:00
# Install Windows dependencies if `-Package` or `-BuildWindowsNative` is specified
2020-01-16 03:03:48 +08:00
if ( $environment . IsWindows ) {
2017-11-11 00:28:02 +08:00
## The VSCode build task requires 'pwsh.exe' to be found in Path
2019-02-07 04:00:57 +08:00
if ( -not ( Get-Command -Name pwsh . exe -CommandType Application -ErrorAction Ignore ) )
2017-11-11 00:28:02 +08:00
{
2020-06-19 02:48:06 +08:00
Write-Log -message " pwsh.exe not found. Install latest PowerShell release and add it to Path "
2017-11-11 00:28:02 +08:00
$psInstallFile = [ System.IO.Path ] :: Combine ( $PSScriptRoot , " tools " , " install-powershell.ps1 " )
& $psInstallFile -AddToPath
}
2016-06-11 05:02:25 +08:00
}
} finally {
Pop-Location
2016-04-14 06:11:38 +08:00
}
}
2022-05-12 00:49:43 +08:00
## If the required SDK version is found, return it.
## Otherwise, return the latest installed SDK version that can be found.
function Find-RequiredSDK {
param (
[ Parameter ( Mandatory , Position = 0 ) ]
[ string ] $requiredSdkVersion
)
2022-05-10 08:51:07 +08:00
$output = Start-NativeExecution -sb { dotnet - -list -sdks } -IgnoreExitcode 2 > $null
2022-05-12 00:49:43 +08:00
$installedSdkVersions = $output | ForEach-Object {
2022-05-10 08:51:07 +08:00
# this splits strings like
# '6.0.202 [C:\Program Files\dotnet\sdk]'
# '7.0.100-preview.2.22153.17 [C:\Users\johndoe\AppData\Local\Microsoft\dotnet\sdk]'
# into version and path parts.
2022-05-12 00:49:43 +08:00
( $_ -split '\s' , 2 ) [ 0 ]
}
if ( $installedSdkVersions -contains $requiredSdkVersion ) {
$requiredSdkVersion
}
else {
$installedSdkVersions | Sort-Object -Descending | Select-Object -First 1
}
2021-10-29 02:40:52 +08:00
}
2016-07-02 03:09:50 +08:00
function Start-DevPowerShell {
2018-07-27 01:30:05 +08:00
[ CmdletBinding ( DefaultParameterSetName = 'ConfigurationParamSet' ) ]
2016-02-04 02:53:43 +08:00
param (
2018-07-27 01:30:05 +08:00
[ string[] ] $ArgumentList = @ ( ) ,
2016-02-04 02:53:43 +08:00
[ switch ] $LoadProfile ,
2018-07-27 01:30:05 +08:00
[ Parameter ( ParameterSetName = 'ConfigurationParamSet' ) ]
[ ValidateSet ( " Debug " , " Release " , " CodeCoverage " , '' ) ] # should match New-PSOptions -Configuration values
[ string ] $Configuration ,
[ Parameter ( ParameterSetName = 'BinDirParamSet' ) ]
[ string ] $BinDir ,
2016-07-02 03:09:50 +08:00
[ switch ] $NoNewWindow ,
[ string ] $Command ,
[ switch ] $KeepPSModulePath
2016-02-04 02:53:43 +08:00
)
2016-04-02 13:01:05 +08:00
try {
2018-07-27 01:30:05 +08:00
if ( -not $BinDir ) {
$BinDir = Split-Path ( New-PSOptions -Configuration $Configuration ) . Output
}
2020-01-16 03:03:48 +08:00
if ( ( -not $NoNewWindow ) -and ( $environment . IsCoreCLR ) ) {
2016-07-28 03:27:41 +08:00
Write-Warning " Start-DevPowerShell -NoNewWindow is currently implied in PowerShellCore edition https://github.com/PowerShell/PowerShell/issues/1543 "
2016-07-28 01:55:42 +08:00
$NoNewWindow = $true
}
2016-07-02 03:09:50 +08:00
if ( -not $LoadProfile ) {
2016-02-04 09:25:51 +08:00
$ArgumentList = @ ( '-noprofile' ) + $ArgumentList
2016-02-04 02:53:43 +08:00
}
2016-08-04 04:23:21 +08:00
if ( -not $KeepPSModulePath ) {
if ( -not $Command ) {
2016-07-02 03:09:50 +08:00
$ArgumentList = @ ( '-NoExit' ) + $ArgumentList
}
2017-03-16 03:04:28 +08:00
$Command = '$env:PSModulePath = Join-Path $env:DEVPATH Modules; ' + $Command
2016-08-04 04:23:21 +08:00
}
2016-07-02 03:09:50 +08:00
2016-08-04 04:23:21 +08:00
if ( $Command ) {
2016-07-02 03:09:50 +08:00
$ArgumentList = $ArgumentList + @ ( " -command $Command " )
}
2018-07-27 01:30:05 +08:00
$env:DEVPATH = $BinDir
2016-02-22 07:06:39 +08:00
# splatting for the win
2016-02-04 09:25:51 +08:00
$startProcessArgs = @ {
2022-08-04 03:29:23 +08:00
FilePath = Join-Path $BinDir 'pwsh'
2018-07-27 01:30:05 +08:00
}
if ( $ArgumentList ) {
$startProcessArgs . ArgumentList = $ArgumentList
2016-02-22 07:06:39 +08:00
}
2016-02-05 05:19:24 +08:00
if ( $NoNewWindow ) {
$startProcessArgs . NoNewWindow = $true
$startProcessArgs . Wait = $true
}
2016-02-22 07:06:39 +08:00
2016-02-04 09:25:51 +08:00
Start-Process @startProcessArgs
2016-04-02 13:01:05 +08:00
} finally {
2016-08-31 02:47:27 +08:00
if ( $env:DevPath )
{
Remove-Item env : DEVPATH
}
2016-02-04 02:53:43 +08:00
}
2016-02-21 06:35:46 +08:00
}
2016-03-23 07:00:20 +08:00
2016-06-18 02:23:29 +08:00
function Start-TypeGen
{
[ CmdletBinding ( ) ]
2017-11-16 02:52:06 +08:00
param
(
[ ValidateNotNullOrEmpty ( ) ]
$IncFileName = 'powershell.inc'
)
2016-06-18 02:23:29 +08:00
2016-06-21 02:59:14 +08:00
# Add .NET CLI tools to PATH
Find-Dotnet
2018-05-03 07:58:39 +08:00
# This custom target depends on 'ResolveAssemblyReferencesDesignTime', whose definition can be found in the sdk folder.
# To find the available properties of '_ReferencesFromRAR' when switching to a new dotnet sdk, follow the steps below:
# 1. create a dummy project using the new dotnet sdk.
# 2. build the dummy project with this command:
# dotnet msbuild .\dummy.csproj /t:ResolveAssemblyReferencesDesignTime /fileLogger /noconsolelogger /v:diag
# 3. search '_ReferencesFromRAR' in the produced 'msbuild.log' file. You will find the properties there.
2017-03-24 04:04:52 +08:00
$GetDependenciesTargetPath = " $PSScriptRoot /src/Microsoft.PowerShell.SDK/obj/Microsoft.PowerShell.SDK.csproj.TypeCatalog.targets "
$GetDependenciesTargetValue = @ '
< Project >
< Target Name = " _GetDependencies "
Move powershell to .NET Core 2.0 (#3556)
This change moves powershell to .NET Core 2.0. Major changes are:
1. PowerShell assemblies are now targeting `netcoreapp2.0`. We are using `microsoft.netcore.app-2.0.0-preview1-001913-00`, which is from dotnet-core build 4/4/17. We cannot target `netstandard2.0` because the packages `System.Reflection.Emit` and `System.Reflection.Emit.Lightweight`, which are needed for powershell class, cannot be referenced when targeting `netstandard2.0`.
2. Refactor code to remove most CLR stub types and extension types.
3. Update build scripts to enable CI builds. The `-cache` section is specified to depend on `appveyor.yml`, so the cache will be invalidated if `appveyor.yml` is changed.
4. Ship `netcoreapp` reference assemblies with powershell to fix the issues in `Add-Type` (#2764). By default `Add-Type` will reference all those reference assemblies when compiling C# code. If `-ReferenceAssembly` is specified, then we search reference assemblies first, then the framework runtime assemblies, and lastly the loaded assemblies (possibly a third-party one that was already loaded).
5. `dotnet publish` generates executable on Unix platforms, but doesn't set "x" permission and thus it cannot execute. Currently, the "x" permission is set in the build script, `dotnet/cli` issue [#6286](https://github.com/dotnet/cli/issues/6286) is tracking this.
6. Replace the use of some APIs with the ones that take `SecureString`.
7. osx.10.12 is required to update to `netcoreapp2.0` because `dotnet-cli` 2.0.0-preview only works on osx.10.12.
8. Add dependency to `System.ValueTuple` to work around a ambiguous type identity issue in coreclr. The issue is tracked by `dotnet/corefx` [#17797](https://github.com/dotnet/corefx/issues/17797). When moving to newer version of `netcoreapp2.0`, we need to verify if this dependency is still needed.
2017-04-18 02:52:38 +08:00
DependsOnTargets = " ResolveAssemblyReferencesDesignTime " >
2017-03-24 04:04:52 +08:00
< ItemGroup >
2019-05-21 13:43:51 +08:00
< _RefAssemblyPath Include = " %(_ReferencesFromRAR.OriginalItemSpec)%3B " Condition = " '%(_ReferencesFromRAR.NuGetPackageId)' != 'Microsoft.Management.Infrastructure' " / >
2017-03-24 04:04:52 +08:00
< / ItemGroup >
Move powershell to .NET Core 2.0 (#3556)
This change moves powershell to .NET Core 2.0. Major changes are:
1. PowerShell assemblies are now targeting `netcoreapp2.0`. We are using `microsoft.netcore.app-2.0.0-preview1-001913-00`, which is from dotnet-core build 4/4/17. We cannot target `netstandard2.0` because the packages `System.Reflection.Emit` and `System.Reflection.Emit.Lightweight`, which are needed for powershell class, cannot be referenced when targeting `netstandard2.0`.
2. Refactor code to remove most CLR stub types and extension types.
3. Update build scripts to enable CI builds. The `-cache` section is specified to depend on `appveyor.yml`, so the cache will be invalidated if `appveyor.yml` is changed.
4. Ship `netcoreapp` reference assemblies with powershell to fix the issues in `Add-Type` (#2764). By default `Add-Type` will reference all those reference assemblies when compiling C# code. If `-ReferenceAssembly` is specified, then we search reference assemblies first, then the framework runtime assemblies, and lastly the loaded assemblies (possibly a third-party one that was already loaded).
5. `dotnet publish` generates executable on Unix platforms, but doesn't set "x" permission and thus it cannot execute. Currently, the "x" permission is set in the build script, `dotnet/cli` issue [#6286](https://github.com/dotnet/cli/issues/6286) is tracking this.
6. Replace the use of some APIs with the ones that take `SecureString`.
7. osx.10.12 is required to update to `netcoreapp2.0` because `dotnet-cli` 2.0.0-preview only works on osx.10.12.
8. Add dependency to `System.ValueTuple` to work around a ambiguous type identity issue in coreclr. The issue is tracked by `dotnet/corefx` [#17797](https://github.com/dotnet/corefx/issues/17797). When moving to newer version of `netcoreapp2.0`, we need to verify if this dependency is still needed.
2017-04-18 02:52:38 +08:00
< WriteLinesToFile File = " $( _DependencyFile ) " Lines = " @(_RefAssemblyPath) " Overwrite = " true " / >
2017-03-24 04:04:52 +08:00
< / Target >
< / Project >
' @
2019-05-21 13:43:51 +08:00
New-Item -ItemType Directory -Path ( Split-Path -Path $GetDependenciesTargetPath -Parent ) -Force > $null
2017-03-24 04:04:52 +08:00
Set-Content -Path $GetDependenciesTargetPath -Value $GetDependenciesTargetValue -Force -Encoding Ascii
Push-Location " $PSScriptRoot /src/Microsoft.PowerShell.SDK "
2016-08-04 04:23:21 +08:00
try {
2017-11-16 02:52:06 +08:00
$ps_inc_file = " $PSScriptRoot /src/TypeCatalogGen/ $IncFileName "
2017-03-24 04:04:52 +08:00
dotnet msbuild . \ Microsoft . PowerShell . SDK . csproj / t: _GetDependencies " /property:DesignTimeBuild=true;_DependencyFile= $ps_inc_file " / nologo
2016-08-04 04:23:21 +08:00
} finally {
2016-06-18 02:23:29 +08:00
Pop-Location
}
Push-Location " $PSScriptRoot /src/TypeCatalogGen "
2016-08-04 04:23:21 +08:00
try {
2017-11-16 02:52:06 +08:00
dotnet run . . / System . Management . Automation / CoreCLR / CorePsTypeCatalog . cs $IncFileName
2016-08-04 04:23:21 +08:00
} finally {
2016-06-18 02:23:29 +08:00
Pop-Location
}
}
2016-04-05 05:20:34 +08:00
function Start-ResGen
{
2016-06-15 18:42:54 +08:00
[ CmdletBinding ( ) ]
param ( )
2016-08-03 02:47:53 +08:00
# Add .NET CLI tools to PATH
Find-Dotnet
Push-Location " $PSScriptRoot /src/ResGen "
2016-08-04 04:23:21 +08:00
try {
2016-08-03 02:47:53 +08:00
Start-NativeExecution { dotnet run } | Write-Verbose
2016-08-04 04:23:21 +08:00
} finally {
2016-08-03 02:47:53 +08:00
Pop-Location
2016-04-05 05:20:34 +08:00
}
}
2016-06-21 02:59:14 +08:00
function Find-Dotnet ( ) {
2021-12-16 08:38:37 +08:00
Write-Verbose " In Find-DotNet "
2021-10-29 02:40:52 +08:00
2016-06-21 02:59:14 +08:00
$originalPath = $env:PATH
2020-01-16 03:03:48 +08:00
$dotnetPath = if ( $environment . IsWindows ) { " $env:LocalAppData \Microsoft\dotnet " } else { " $env:HOME /.dotnet " }
2016-06-21 02:59:14 +08:00
2021-10-29 02:40:52 +08:00
$chosenDotNetVersion = if ( $dotnetSDKVersionOveride ) {
$dotnetSDKVersionOveride
}
else {
$dotnetCLIRequiredVersion
}
2017-11-10 08:28:39 +08:00
# If there dotnet is already in the PATH, check to see if that version of dotnet can find the required SDK
# This is "typically" the globally installed dotnet
if ( precheck dotnet ) {
# Must run from within repo to ensure global.json can specify the required SDK version
Push-Location $PSScriptRoot
2022-05-12 00:49:43 +08:00
$dotnetCLIInstalledVersion = Find-RequiredSDK $chosenDotNetVersion
2017-11-10 08:28:39 +08:00
Pop-Location
2021-10-29 02:40:52 +08:00
2022-02-01 04:13:32 +08:00
Write-Verbose -Message " Find-DotNet: dotnetCLIInstalledVersion = $dotnetCLIInstalledVersion ; chosenDotNetVersion = $chosenDotNetVersion "
2021-10-29 02:40:52 +08:00
if ( $dotnetCLIInstalledVersion -ne $chosenDotNetVersion ) {
2017-11-10 08:28:39 +08:00
Write-Warning " The 'dotnet' in the current path can't find SDK version ${dotnetCLIRequiredVersion} , prepending $dotnetPath to PATH. "
# Globally installed dotnet doesn't have the required SDK version, prepend the user local dotnet location
$env:PATH = $dotnetPath + [ IO.Path ] :: PathSeparator + $env:PATH
}
}
else {
Write-Warning " Could not find 'dotnet', appending $dotnetPath to PATH. "
2016-06-21 02:59:14 +08:00
$env:PATH + = [ IO.Path ] :: PathSeparator + $dotnetPath
}
if ( -not ( precheck 'dotnet' " Still could not find 'dotnet', restoring PATH. " ) ) {
$env:PATH = $originalPath
}
}
2016-07-01 07:02:07 +08:00
<#
2016-07-02 04:51:14 +08:00
This is one-time conversion . We use it for to turn GetEventResources . txt into GetEventResources . resx
2016-07-01 07:02:07 +08:00
. EXAMPLE Convert-TxtResourceToXml -Path Microsoft . PowerShell . Commands . Diagnostics \ resources
#>
function Convert-TxtResourceToXml
{
param (
[ string[] ] $Path
)
2016-08-04 04:23:21 +08:00
process {
2017-07-22 12:03:49 +08:00
$Path | ForEach-Object {
Get-ChildItem $_ -Filter " *.txt " | ForEach-Object {
2016-07-01 07:02:07 +08:00
$txtFile = $_ . FullName
$resxFile = Join-Path ( Split-Path $txtFile ) " $( $_ . BaseName ) .resx "
$resourceHashtable = ConvertFrom-StringData ( Get-Content -Raw $txtFile )
2017-07-22 12:03:49 +08:00
$resxContent = $resourceHashtable . GetEnumerator ( ) | ForEach-Object {
2016-07-01 07:02:07 +08:00
@ '
< data name = " {0} " xml : space = " preserve " >
< value > { 1 } < / value >
< / data >
' @ -f $_ . Key , $_ . Value
} | Out-String
Set-Content -Path $resxFile -Value ( $script:RESX_TEMPLATE -f $resxContent )
}
}
}
}
2016-06-22 07:54:57 +08:00
function script: Use-MSBuild {
2016-06-25 05:52:04 +08:00
# TODO: we probably should require a particular version of msbuild, if we are taking this dependency
# msbuild v14 and msbuild v4 behaviors are different for XAML generation
$frameworkMsBuildLocation = " ${env:SystemRoot} \Microsoft.Net\Framework\v4.0.30319\msbuild "
2016-06-23 10:46:16 +08:00
2020-05-07 20:00:30 +08:00
$msbuild = Get-Command msbuild -ErrorAction Ignore
2016-08-04 04:23:21 +08:00
if ( $msbuild ) {
2016-06-25 05:52:04 +08:00
# all good, nothing to do
return
2016-06-22 07:54:57 +08:00
}
2016-06-23 10:46:16 +08:00
2016-08-04 04:23:21 +08:00
if ( -not ( Test-Path $frameworkMsBuildLocation ) ) {
2016-06-25 05:52:04 +08:00
throw " msbuild not found in ' $frameworkMsBuildLocation '. Install Visual Studio 2015. "
2016-06-23 10:46:16 +08:00
}
2016-06-25 05:52:04 +08:00
Set-Alias msbuild $frameworkMsBuildLocation -Scope Script
2016-06-22 07:54:57 +08:00
}
2018-03-09 02:47:20 +08:00
function script: Write-Log
{
param
(
[ Parameter ( Position = 0 , Mandatory ) ]
[ ValidateNotNullOrEmpty ( ) ]
[ string ] $message ,
2016-04-02 13:01:05 +08:00
2019-12-21 04:09:03 +08:00
[ switch ] $isError
2018-03-09 02:47:20 +08:00
)
2019-12-21 04:09:03 +08:00
if ( $isError )
2018-03-09 02:47:20 +08:00
{
Write-Host -Foreground Red $message
}
else
{
Write-Host -Foreground Green $message
}
2016-12-02 03:23:14 +08:00
#reset colors for older package to at return to default after error message on a compilation error
[ console ] :: ResetColor ( )
}
2016-04-02 13:01:05 +08:00
function script: precheck([string]$command , [ string ] $missedMessage ) {
2019-02-07 04:00:57 +08:00
$c = Get-Command $command -ErrorAction Ignore
2016-04-02 13:01:05 +08:00
if ( -not $c ) {
2017-07-26 07:50:27 +08:00
if ( -not [ string ] :: IsNullOrEmpty ( $missedMessage ) )
2016-07-22 06:53:36 +08:00
{
Write-Warning $missedMessage
}
2016-04-02 13:01:05 +08:00
return $false
} else {
return $true
}
}
2017-01-18 05:00:52 +08:00
# Cleans the PowerShell repo - everything but the root folder
2016-09-01 03:13:05 +08:00
function Clear-PSRepo
{
[ CmdletBinding ( ) ]
2017-01-18 05:00:52 +08:00
param ( )
Get-ChildItem $PSScriptRoot \ * -Directory | ForEach-Object {
2017-01-17 05:31:14 +08:00
Write-Verbose " Cleaning $_ ... "
2016-09-01 03:13:05 +08:00
git clean -fdX $_
}
}
2016-11-18 05:54:38 +08:00
# Install PowerShell modules such as PackageManagement, PowerShellGet
2018-02-28 05:36:54 +08:00
function Copy-PSGalleryModules
2016-11-18 05:54:38 +08:00
{
[ CmdletBinding ( ) ]
param (
[ Parameter ( Mandatory = $true ) ]
2018-12-01 03:49:38 +08:00
[ string ] $CsProjPath ,
[ Parameter ( Mandatory = $true ) ]
[ string ] $Destination ,
[ Parameter ( ) ]
[ switch ] $Force
2018-02-28 05:36:54 +08:00
)
2018-01-23 08:09:35 +08:00
2018-02-28 05:36:54 +08:00
if ( ! $Destination . EndsWith ( " Modules " ) ) {
throw " Installing to an unexpected location "
}
2016-11-18 05:54:38 +08:00
2018-03-23 02:22:16 +08:00
Find-DotNet
2018-12-01 03:49:38 +08:00
2020-12-15 06:16:55 +08:00
Restore-PSPackage -ProjectDirs ( Split-Path $CsProjPath ) -Force: $Force . IsPresent -PSModule
2018-03-23 02:22:16 +08:00
2018-02-28 05:36:54 +08:00
$cache = dotnet nuget locals global-packages -l
2020-03-20 02:27:13 +08:00
if ( $cache -match " global-packages: (.*) " ) {
2020-01-14 03:15:17 +08:00
$nugetCache = $Matches [ 1 ]
2018-02-28 05:36:54 +08:00
}
else {
throw " Can't find nuget global cache "
}
2016-11-18 05:54:38 +08:00
2018-12-01 03:49:38 +08:00
$psGalleryProj = [ xml ] ( Get-Content -Raw $CsProjPath )
2018-01-23 08:09:35 +08:00
2018-02-28 05:36:54 +08:00
foreach ( $m in $psGalleryProj . Project . ItemGroup . PackageReference ) {
$name = $m . Include
$version = $m . Version
2020-06-19 02:48:06 +08:00
Write-Log -message " Name=' $Name ', Version=' $version ', Destination=' $Destination ' "
2016-11-18 05:54:38 +08:00
2018-02-28 05:36:54 +08:00
# Remove the build revision from the src (nuget drops it).
2018-08-16 12:53:00 +08:00
$srcVer = if ( $version -match " (\d+.\d+.\d+).0 " ) {
2020-01-14 03:15:17 +08:00
$Matches [ 1 ]
2019-05-22 08:36:17 +08:00
} elseif ( $version -match " ^\d+.\d+ $ " ) {
# Two digit versions are stored as three digit versions
" $version .0 "
2018-02-28 05:36:54 +08:00
} else {
$version
2018-01-23 08:09:35 +08:00
}
2016-11-18 05:54:38 +08:00
2018-02-28 05:36:54 +08:00
# Nuget seems to always use lowercase in the cache
$src = " $nugetCache / $( $name . ToLower ( ) ) / $srcVer "
2018-08-15 01:15:05 +08:00
$dest = " $Destination / $name "
2018-01-23 08:09:35 +08:00
2018-02-28 05:36:54 +08:00
Remove-Item -Force -ErrorAction Ignore -Recurse " $Destination / $name "
New-Item -Path $dest -ItemType Directory -Force -ErrorAction Stop > $null
2019-01-23 04:55:22 +08:00
# Exclude files/folders that are not needed. The fullclr folder is coming from the PackageManagement module
2019-05-21 13:43:51 +08:00
$dontCopy = '*.nupkg' , '*.nupkg.metadata' , '*.nupkg.sha512' , '*.nuspec' , 'System.Runtime.InteropServices.RuntimeInformation.dll' , 'fullclr'
2019-05-22 08:36:17 +08:00
Copy-Item -Exclude $dontCopy -Recurse $src / * $dest -ErrorAction Stop
2016-11-18 05:54:38 +08:00
}
}
2018-05-11 08:46:45 +08:00
function Merge-TestLogs
{
[ CmdletBinding ( ) ]
param (
[ Parameter ( Mandatory = $true ) ]
[ ValidateScript ( { Test-Path $_ } ) ]
[ string ] $XUnitLogPath ,
[ Parameter ( Mandatory = $true ) ]
[ ValidateScript ( { Test-Path $_ } ) ]
[ string[] ] $NUnitLogPath ,
[ Parameter ( ) ]
[ ValidateScript ( { Test-Path $_ } ) ]
[ string[] ] $AdditionalXUnitLogPath ,
[ Parameter ( ) ]
[ string ] $OutputLogPath
)
# Convert all the NUnit logs into single object
$convertedNUnit = ConvertFrom-PesterLog -logFile $NUnitLogPath
$xunit = [ xml ] ( Get-Content $XUnitLogPath -ReadCount 0 -Raw )
$strBld = [ System.Text.StringBuilder ] :: new ( $xunit . assemblies . InnerXml )
foreach ( $assembly in $convertedNUnit . assembly )
{
$strBld . Append ( $assembly . ToString ( ) ) | Out-Null
}
foreach ( $path in $AdditionalXUnitLogPath )
{
$addXunit = [ xml ] ( Get-Content $path -ReadCount 0 -Raw )
$strBld . Append ( $addXunit . assemblies . InnerXml ) | Out-Null
}
$xunit . assemblies . InnerXml = $strBld . ToString ( )
$xunit . Save ( $OutputLogPath )
}
function ConvertFrom-PesterLog {
[ CmdletBinding ( ) ]
param (
[ Parameter ( ValueFromPipeline = $true , Mandatory = $true , Position = 0 ) ]
[ string[] ] $Logfile ,
[ Parameter ( ) ] [ switch ] $IncludeEmpty ,
[ Parameter ( ) ] [ switch ] $MultipleLog
)
<#
Convert our test logs to
xunit schema - top level assemblies
Pester conversion
foreach $r in " test-results " . " test-suite " . results . " test-suite "
assembly
name = $r . Description
config-file = log file ( this is the only way we can determine between admin / nonadmin log )
test-framework = Pester
environment = top-level " test-results.environment.platform
run-date = date ( doesn ' t exist in pester except for beginning )
run-time = time
time =
#>
BEGIN {
# CLASSES
class assemblies {
# attributes
[ datetime ] $timestamp
# child elements
[ System.Collections.Generic.List[testAssembly] ] $assembly
assemblies ( ) {
$this . timestamp = [ datetime ] :: now
$this . assembly = [ System.Collections.Generic.List[testAssembly] ] :: new ( )
}
static [ assemblies ] op_Addition ( [ assemblies ] $ls , [ assemblies ] $rs ) {
$newAssembly = [ assemblies ] :: new ( )
$newAssembly . assembly . AddRange ( $ls . assembly )
$newAssembly . assembly . AddRange ( $rs . assembly )
return $newAssembly
}
[ string ] ToString ( ) {
$sb = [ text.stringbuilder ] :: new ( )
$sb . AppendLine ( '<assemblies timestamp="{0:MM}/{0:dd}/{0:yyyy} {0:HH}:{0:mm}:{0:ss}">' -f $this . timestamp )
foreach ( $a in $this . assembly ) {
$sb . Append ( " $a " )
}
$sb . AppendLine ( " </assemblies> " ) ;
return $sb . ToString ( )
}
# use Write-Output to emit these into the pipeline
[ array ] GetTests ( ) {
return $this . Assembly . collection . test
}
}
class testAssembly {
# attributes
[ string ] $name # path to pester file
[ string ] $ { config-file }
[ string ] $ { test-framework } # Pester
[ string ] $environment
[ string ] $ { run-date }
[ string ] $ { run-time }
[ decimal ] $time
[ int ] $total
[ int ] $passed
[ int ] $failed
[ int ] $skipped
[ int ] $errors
testAssembly ( ) {
$this . " config-file " = " no config "
$this . " test-framework " = " Pester "
$this . environment = $script:environment
$this . " run-date " = $script:rundate
$this . " run-time " = $script:runtime
$this . collection = [ System.Collections.Generic.List[collection] ] :: new ( )
}
# child elements
[ error[] ] $error
[ System.Collections.Generic.List[collection] ] $collection
[ string ] ToString ( ) {
$sb = [ System.Text.StringBuilder ] :: new ( )
$sb . AppendFormat ( ' <assembly name="{0}" ' , $this . name )
$sb . AppendFormat ( 'environment="{0}" ' , [ security.securityelement ] :: escape ( $this . environment ) )
$sb . AppendFormat ( 'test-framework="{0}" ' , $this . " test-framework " )
$sb . AppendFormat ( 'run-date="{0}" ' , $this . " run-date " )
$sb . AppendFormat ( 'run-time="{0}" ' , $this . " run-time " )
$sb . AppendFormat ( 'total="{0}" ' , $this . total )
$sb . AppendFormat ( 'passed="{0}" ' , $this . passed )
$sb . AppendFormat ( 'failed="{0}" ' , $this . failed )
$sb . AppendFormat ( 'skipped="{0}" ' , $this . skipped )
$sb . AppendFormat ( 'time="{0}" ' , $this . time )
$sb . AppendFormat ( 'errors="{0}" ' , $this . errors )
$sb . AppendLine ( " > " )
if ( $this . error ) {
$sb . AppendLine ( " <errors> " )
foreach ( $e in $this . error ) {
$sb . AppendLine ( $e . ToString ( ) )
}
$sb . AppendLine ( " </errors> " )
} else {
$sb . AppendLine ( " <errors /> " )
}
foreach ( $col in $this . collection ) {
$sb . AppendLine ( $col . ToString ( ) )
}
$sb . AppendLine ( " </assembly> " )
return $sb . ToString ( )
}
}
class collection {
# attributes
[ string ] $name
[ decimal ] $time
[ int ] $total
[ int ] $passed
[ int ] $failed
[ int ] $skipped
# child element
[ System.Collections.Generic.List[test] ] $test
# constructor
collection ( ) {
$this . test = [ System.Collections.Generic.List[test] ] :: new ( )
}
[ string ] ToString ( ) {
$sb = [ Text.StringBuilder ] :: new ( )
if ( $this . test . count -eq 0 ) {
$sb . AppendLine ( " <collection /> " )
} else {
$sb . AppendFormat ( ' <collection total="{0}" passed="{1}" failed="{2}" skipped="{3}" name="{4}" time="{5}">' + " `n " ,
$this . total , $this . passed , $this . failed , $this . skipped , [ security.securityelement ] :: escape ( $this . name ) , $this . time )
foreach ( $t in $this . test ) {
$sb . AppendLine ( " " + $t . ToString ( ) ) ;
}
$sb . Append ( " </collection> " )
}
return $sb . ToString ( )
}
}
class errors {
[ error[] ] $error
}
class error {
# attributes
[ string ] $type
[ string ] $name
# child elements
[ failure ] $failure
[ string ] ToString ( ) {
$sb = [ system.text.stringbuilder ] :: new ( )
$sb . AppendLine ( '<error type="{0}" name="{1}" >' -f $this . type , [ security.securityelement ] :: escape ( $this . Name ) )
$sb . AppendLine ( $this . failure -as [ string ] )
$sb . AppendLine ( " </error> " )
return $sb . ToString ( )
}
}
class cdata {
[ string ] $text
cdata ( [ string ] $s ) { $this . text = $s }
[ string ] ToString ( ) {
return '<![CDATA[' + [ security.securityelement ] :: escape ( $this . text ) + ']]>'
}
}
class failure {
[ string ] $ { exception-type }
[ cdata ] $message
[ cdata ] $ { stack-trace }
failure ( [ string ] $message , [ string ] $stack ) {
$this . " exception-type " = " Pester "
$this . Message = [ cdata ] :: new ( $message )
$this . " stack-trace " = [ cdata ] :: new ( $stack )
}
[ string ] ToString ( ) {
$sb = [ text.stringbuilder ] :: new ( )
$sb . AppendLine ( " <failure> " )
$sb . AppendLine ( " <message> " + ( $this . message -as [ string ] ) + " </message> " )
$sb . AppendLine ( " <stack-trace> " + ( $this . " stack-trace " -as [ string ] ) + " </stack-trace> " )
$sb . Append ( " </failure> " )
return $sb . ToString ( )
}
}
enum resultenum {
Pass
Fail
Skip
}
class trait {
# attributes
[ string ] $name
[ string ] $value
}
class traits {
[ trait[] ] $trait
}
class test {
# attributes
[ string ] $name
[ string ] $type
[ string ] $method
[ decimal ] $time
[ resultenum ] $result
# child elements
[ trait[] ] $traits
[ failure ] $failure
[ cdata ] $reason # skip reason
[ string ] ToString ( ) {
$sb = [ text.stringbuilder ] :: new ( )
$sb . appendformat ( ' <test name="{0}" type="{1}" method="{2}" time="{3}" result="{4}"' ,
[ security.securityelement ] :: escape ( $this . name ) , [ security.securityelement ] :: escape ( $this . type ) ,
[ security.securityelement ] :: escape ( $this . method ) , $this . time , $this . result )
if ( $this . failure ) {
$sb . AppendLine ( " > " )
$sb . AppendLine ( $this . failure -as [ string ] )
$sb . append ( ' </test>' )
} else {
$sb . Append ( " /> " )
}
return $sb . ToString ( )
}
}
function convert-pesterlog ( [ xml ] $x , $logpath , [ switch ] $includeEmpty ) {
<# $resultMap = @{
Success = " Pass "
Ignored = " Skip "
Failure = " Fail "
} #>
$resultMap = @ {
Success = " Pass "
Ignored = " Skip "
Failure = " Fail "
Inconclusive = " Skip "
}
$configfile = $logpath
$runtime = $x . " test-results " . time
$environment = $x . " test-results " . environment . platform + " - " + $x . " test-results " . environment . " os-version "
$rundate = $x . " test-results " . date
$suites = $x . " test-results " . " test-suite " . results . " test-suite "
$assemblies = [ assemblies ] :: new ( )
foreach ( $suite in $suites ) {
$tCases = $suite . SelectNodes ( " .//test-case " )
# only create an assembly group if we have tests
if ( $tCases . count -eq 0 -and ! $includeEmpty ) { continue }
$tGroup = $tCases | Group-Object result
$total = $tCases . Count
$asm = [ testassembly ] :: new ( )
$asm . environment = $environment
$asm . " run-date " = $rundate
$asm . " run-time " = $runtime
$asm . Name = $suite . name
$asm . " config-file " = $configfile
$asm . time = $suite . time
$asm . total = $suite . SelectNodes ( " .//test-case " ) . Count
2018-10-09 14:16:50 +08:00
$asm . Passed = $tGroup | Where-Object -FilterScript { $_ . Name -eq " Success " } | ForEach-Object -Process { $_ . Count }
$asm . Failed = $tGroup | Where-Object -FilterScript { $_ . Name -eq " Failure " } | ForEach-Object -Process { $_ . Count }
$asm . Skipped = $tGroup | Where-Object -FilterScript { $_ . Name -eq " Ignored " } | ForEach-Object -Process { $_ . Count }
$asm . Skipped + = $tGroup | Where-Object -FilterScript { $_ . Name -eq " Inconclusive " } | ForEach-Object -Process { $_ . Count }
2018-05-11 08:46:45 +08:00
$c = [ collection ] :: new ( )
$c . passed = $asm . Passed
$c . failed = $asm . failed
$c . skipped = $asm . skipped
$c . total = $asm . total
$c . time = $asm . time
$c . name = $asm . name
foreach ( $tc in $suite . SelectNodes ( " .//test-case " ) ) {
if ( $tc . result -match " Success|Ignored|Failure " ) {
$t = [ test ] :: new ( )
$t . name = $tc . Name
$t . time = $tc . time
$t . method = $tc . description # the pester actually puts the name of the "it" as description
$t . type = $suite . results . " test-suite " . description | Select-Object -First 1
$t . result = $resultMap [ $tc . result ]
if ( $tc . failure ) {
$t . failure = [ failure ] :: new ( $tc . failure . message , $tc . failure . " stack-trace " )
}
$null = $c . test . Add ( $t )
}
}
$null = $asm . collection . add ( $c )
$assemblies . assembly . Add ( $asm )
}
$assemblies
}
# convert it to our object model
# a simple conversion
function convert-xunitlog {
param ( $x , $logpath )
$asms = [ assemblies ] :: new ( )
$asms . timestamp = $x . assemblies . timestamp
foreach ( $assembly in $x . assemblies . assembly ) {
$asm = [ testAssembly ] :: new ( )
$asm . environment = $assembly . environment
$asm . " test-framework " = $assembly . " test-framework "
$asm . " run-date " = $assembly . " run-date "
$asm . " run-time " = $assembly . " run-time "
$asm . total = $assembly . total
$asm . passed = $assembly . passed
$asm . failed = $assembly . failed
$asm . skipped = $assembly . skipped
$asm . time = $assembly . time
$asm . name = $assembly . name
foreach ( $coll in $assembly . collection ) {
$c = [ collection ] :: new ( )
$c . name = $coll . name
$c . total = $coll . total
$c . passed = $coll . passed
$c . failed = $coll . failed
$c . skipped = $coll . skipped
$c . time = $coll . time
foreach ( $t in $coll . test ) {
$test = [ test ] :: new ( )
$test . name = $t . name
$test . type = $t . type
$test . method = $t . method
$test . time = $t . time
$test . result = $t . result
$c . test . Add ( $test )
}
$null = $asm . collection . add ( $c )
}
$null = $asms . assembly . add ( $asm )
}
$asms
}
$Logs = @ ( )
}
PROCESS {
#### MAIN ####
foreach ( $log in $Logfile ) {
2020-05-07 20:00:30 +08:00
foreach ( $logpath in ( Resolve-Path $log ) . path ) {
Write-Progress " converting file $logpath "
2018-05-11 08:46:45 +08:00
if ( ! $logpath ) { throw " Cannot resolve $Logfile " }
2020-05-07 20:00:30 +08:00
$x = [ xml ] ( Get-Content -Raw -ReadCount 0 $logpath )
2018-05-11 08:46:45 +08:00
if ( $x . psobject . properties [ 'test-results' ] ) {
$Logs + = convert-pesterlog $x $logpath -includeempty: $includeempty
} elseif ( $x . psobject . properties [ 'assemblies' ] ) {
$Logs + = convert-xunitlog $x $logpath -includeEmpty: $includeEmpty
} else {
2020-05-07 20:00:30 +08:00
Write-Error " Cannot determine log type "
2018-05-11 08:46:45 +08:00
}
}
}
}
END {
if ( $MultipleLog ) {
$Logs
} else {
$combinedLog = $Logs [ 0 ]
for ( $i = 1 ; $i -lt $logs . count ; $i + + ) {
$combinedLog + = $Logs [ $i ]
}
$combinedLog
}
}
}
2018-08-18 13:06:51 +08:00
# Save PSOptions to be restored by Restore-PSOptions
function Save-PSOptions {
param (
[ ValidateScript ( { $parent = Split-Path $_ ; if ( $parent ) { Test-Path $parent } else { return $true } } ) ]
[ ValidateNotNullOrEmpty ( ) ]
[ string ]
$PSOptionsPath = ( Join-Path -Path $PSScriptRoot -ChildPath 'psoptions.json' ) ,
[ ValidateNotNullOrEmpty ( ) ]
[ object ]
$Options = ( Get-PSOptions -DefaultToNew )
)
$Options | ConvertTo-Json -Depth 3 | Out-File -Encoding utf8 -FilePath $PSOptionsPath
}
# Restore PSOptions
# Optionally remove the PSOptions file
function Restore-PSOptions {
param (
[ ValidateScript ( { Test-Path $_ } ) ]
[ string ]
$PSOptionsPath = ( Join-Path -Path $PSScriptRoot -ChildPath 'psoptions.json' ) ,
[ switch ]
$Remove
)
$options = Get-Content -Path $PSOptionsPath | ConvertFrom-Json
if ( $Remove )
{
# Remove PSOptions.
# The file is only used to set the PSOptions.
Remove-Item -Path $psOptionsPath -Force
}
$newOptions = New-PSOptionsObject `
-RootInfo $options . RootInfo `
-Top $options . Top `
-Runtime $options . Runtime `
-Configuration $options . Configuration `
-PSModuleRestore $options . PSModuleRestore `
-Framework $options . Framework `
2021-03-13 05:25:30 +08:00
-Output $options . Output `
-ForMinimalSize $options . ForMinimalSize
2018-08-18 13:06:51 +08:00
Set-PSOptions -Options $newOptions
}
function New-PSOptionsObject
{
param (
[ PSCustomObject ]
$RootInfo ,
[ Parameter ( Mandatory ) ]
[ String ]
$Top ,
[ Parameter ( Mandatory ) ]
[ String ]
$Runtime ,
[ Parameter ( Mandatory ) ]
[ String ]
$Configuration ,
[ Parameter ( Mandatory ) ]
[ Bool ]
$PSModuleRestore ,
[ Parameter ( Mandatory ) ]
[ String ]
$Framework ,
[ Parameter ( Mandatory ) ]
[ String ]
2021-03-13 05:25:30 +08:00
$Output ,
[ Parameter ( Mandatory ) ]
[ Bool ]
$ForMinimalSize
2018-08-18 13:06:51 +08:00
)
return @ {
RootInfo = $RootInfo
Top = $Top
Configuration = $Configuration
Framework = $Framework
Runtime = $Runtime
Output = $Output
PSModuleRestore = $PSModuleRestore
2021-03-13 05:25:30 +08:00
ForMinimalSize = $ForMinimalSize
2018-08-18 13:06:51 +08:00
}
}
2016-07-01 07:02:07 +08:00
$script:RESX_TEMPLATE = @ '
< ? xml version = " 1.0 " encoding = " utf-8 " ? >
< root >
2016-08-04 04:23:21 +08:00
< ! - -
Microsoft ResX Schema
2016-07-01 07:02:07 +08:00
Version 2.0
2016-08-04 04:23:21 +08:00
The primary goals of this format is to allow a simple XML format
that is mostly human readable . The generation and parsing of the
various data types are done through the TypeConverter classes
2016-07-01 07:02:07 +08:00
associated with the data types .
2016-08-04 04:23:21 +08:00
2016-07-01 07:02:07 +08:00
Example :
2016-08-04 04:23:21 +08:00
2016-07-01 07:02:07 +08:00
. . . ado . net / XML headers & schema . . .
< resheader name = " resmimetype " > text / microsoft-resx < / resheader >
< resheader name = " version " > 2.0 < / resheader >
< resheader name = " reader " > System . Resources . ResXResourceReader , System . Windows . Forms , . . . < / resheader >
< resheader name = " writer " > System . Resources . ResXResourceWriter , System . Windows . Forms , . . . < / resheader >
< data name = " Name1 " > < value > this is my long string < / value > < comment > this is a comment < / comment > < / data >
< data name = " Color1 " type = " System.Drawing.Color, System.Drawing " > Blue < / data >
< data name = " Bitmap1 " mimetype = " application/x-microsoft.net.object.binary.base64 " >
< value > [ base64 mime encoded serialized .NET Framework object ] < / value >
< / data >
< data name = " Icon1 " type = " System.Drawing.Icon, System.Drawing " mimetype = " application/x-microsoft.net.object.bytearray.base64 " >
< value > [ base64 mime encoded string representing a byte array form of the .NET Framework object ] < / value >
< comment > This is a comment < / comment >
< / data >
2016-08-04 04:23:21 +08:00
There are any number of " resheader " rows that contain simple
2016-07-01 07:02:07 +08:00
name / value pairs .
2016-08-04 04:23:21 +08:00
Each data row contains a name , and value . The row also contains a
type or mimetype . Type corresponds to a . NET class that support
text / value conversion through the TypeConverter architecture .
Classes that don ' t support this are serialized and stored with the
2016-07-01 07:02:07 +08:00
mimetype set .
2016-08-04 04:23:21 +08:00
The mimetype is used for serialized objects , and tells the
ResXResourceReader how to depersist the object . This is currently not
2016-07-01 07:02:07 +08:00
extensible . For a given mimetype the value must be set accordingly :
2016-08-04 04:23:21 +08:00
Note - application / x-microsoft . net . object . binary . base64 is the format
that the ResXResourceWriter will generate , however the reader can
2016-07-01 07:02:07 +08:00
read any of the formats listed below .
2016-08-04 04:23:21 +08:00
2016-07-01 07:02:07 +08:00
mimetype : application / x-microsoft . net . object . binary . base64
2016-08-04 04:23:21 +08:00
value : The object must be serialized with
2016-07-01 07:02:07 +08:00
: System . Runtime . Serialization . Formatters . Binary . BinaryFormatter
: and then encoded with base64 encoding .
2016-08-04 04:23:21 +08:00
2016-07-01 07:02:07 +08:00
mimetype : application / x-microsoft . net . object . soap . base64
2016-08-04 04:23:21 +08:00
value : The object must be serialized with
2016-07-01 07:02:07 +08:00
: System . Runtime . Serialization . Formatters . Soap . SoapFormatter
: and then encoded with base64 encoding .
mimetype : application / x-microsoft . net . object . bytearray . base64
2016-08-04 04:23:21 +08:00
value : The object must be serialized into a byte array
2016-07-01 07:02:07 +08:00
: using a System . ComponentModel . TypeConverter
: and then encoded with base64 encoding .
- - >
< xsd : schema id = " root " xmlns = " " xmlns : xsd = " http://www.w3.org/2001/XMLSchema " xmlns : msdata = " urn:schemas-microsoft-com:xml-msdata " >
< xsd : import namespace = " http://www.w3.org/XML/1998/namespace " / >
< xsd : element name = " root " msdata : IsDataSet = " true " >
< xsd : complexType >
< xsd : choice maxOccurs = " unbounded " >
< xsd : element name = " metadata " >
< xsd : complexType >
< xsd : sequence >
< xsd : element name = " value " type = " xsd:string " minOccurs = " 0 " / >
< / xsd : sequence >
< xsd : attribute name = " name " use = " required " type = " xsd:string " / >
< xsd : attribute name = " type " type = " xsd:string " / >
< xsd : attribute name = " mimetype " type = " xsd:string " / >
< xsd : attribute ref = " xml:space " / >
< / xsd : complexType >
< / xsd : element >
< xsd : element name = " assembly " >
< xsd : complexType >
< xsd : attribute name = " alias " type = " xsd:string " / >
< xsd : attribute name = " name " type = " xsd:string " / >
< / xsd : complexType >
< / xsd : element >
< xsd : element name = " data " >
< xsd : complexType >
< xsd : sequence >
< xsd : element name = " value " type = " xsd:string " minOccurs = " 0 " msdata : Ordinal = " 1 " / >
< xsd : element name = " comment " type = " xsd:string " minOccurs = " 0 " msdata : Ordinal = " 2 " / >
< / xsd : sequence >
< xsd : attribute name = " name " type = " xsd:string " use = " required " msdata : Ordinal = " 1 " / >
< xsd : attribute name = " type " type = " xsd:string " msdata : Ordinal = " 3 " / >
< xsd : attribute name = " mimetype " type = " xsd:string " msdata : Ordinal = " 4 " / >
< xsd : attribute ref = " xml:space " / >
< / xsd : complexType >
< / xsd : element >
< xsd : element name = " resheader " >
< xsd : complexType >
< xsd : sequence >
< xsd : element name = " value " type = " xsd:string " minOccurs = " 0 " msdata : Ordinal = " 1 " / >
< / xsd : sequence >
< xsd : attribute name = " name " type = " xsd:string " use = " required " / >
< / xsd : complexType >
< / xsd : element >
< / xsd : choice >
< / xsd : complexType >
< / xsd : element >
< / xsd : schema >
< resheader name = " resmimetype " >
< value > text / microsoft-resx < / value >
< / resheader >
< resheader name = " version " >
< value > 2.0 < / value >
< / resheader >
< resheader name = " reader " >
< value > System . Resources . ResXResourceReader , System . Windows . Forms , Version = 2.0 . 0 . 0 , Culture = neutral , PublicKeyToken = b77a5c561934e089 < / value >
< / resheader >
< resheader name = " writer " >
< value > System . Resources . ResXResourceWriter , System . Windows . Forms , Version = 2.0 . 0 . 0 , Culture = neutral , PublicKeyToken = b77a5c561934e089 < / value >
< / resheader >
{ 0 }
< / root >
2016-07-06 01:36:38 +08:00
' @
2018-10-20 05:56:58 +08:00
2018-11-27 02:44:42 +08:00
function Get-UniquePackageFolderName {
param (
[ Parameter ( Mandatory ) ] $Root
)
$packagePath = Join-Path $Root 'TestPackage'
$triesLeft = 10
while ( Test-Path $packagePath ) {
$suffix = Get-Random
# Not using Guid to avoid maxpath problems as in example below.
# Example: 'TestPackage-ba0ae1db-8512-46c5-8b6c-1862d33a2d63\test\powershell\Modules\Microsoft.PowerShell.Security\TestData\CatalogTestData\UserConfigProv\DSCResources\UserConfigProviderModVersion1\UserConfigProviderModVersion1.schema.mof'
$packagePath = Join-Path $Root " TestPackage_ $suffix "
$triesLeft - -
if ( $triesLeft -le 0 ) {
throw " Could find unique folder name for package path "
}
}
$packagePath
}
2018-10-20 05:56:58 +08:00
function New-TestPackage
{
[ CmdletBinding ( ) ]
param (
[ Parameter ( Mandatory = $true ) ]
2019-04-27 06:41:07 +08:00
[ string ] $Destination ,
[ string ] $Runtime
2018-10-20 05:56:58 +08:00
)
if ( Test-Path $Destination -PathType Leaf )
{
throw " Destination: ' $Destination ' is not a directory or does not exist. "
}
else
{
$null = New-Item -Path $Destination -ItemType Directory -Force
Write-Verbose -Message " Creating destination folder: $Destination "
}
2018-10-24 07:31:04 +08:00
$rootFolder = $env:TEMP
2018-11-27 02:44:42 +08:00
# In some build agents, typically macOS on AzDevOps, $env:TEMP might not be set.
2018-10-24 07:31:04 +08:00
if ( -not $rootFolder -and $env:TF_BUILD ) {
$rootFolder = $env:AGENT_WORKFOLDER
}
2020-01-16 03:03:48 +08:00
Write-Verbose -Message " RootFolder: $rootFolder " -Verbose
2018-11-27 02:44:42 +08:00
$packageRoot = Get-UniquePackageFolderName -Root $rootFolder
2018-10-30 05:13:05 +08:00
2018-10-20 05:56:58 +08:00
$null = New-Item -ItemType Directory -Path $packageRoot -Force
$packagePath = Join-Path $Destination " TestPackage.zip "
2020-01-16 03:03:48 +08:00
Write-Verbose -Message " PackagePath: $packagePath " -Verbose
2018-10-20 05:56:58 +08:00
# Build test tools so they are placed in appropriate folders under 'test' then copy to package root.
2019-04-27 06:41:07 +08:00
$null = Publish-PSTestTools -runtime $Runtime
2018-10-20 05:56:58 +08:00
$powerShellTestRoot = Join-Path $PSScriptRoot 'test'
Copy-Item $powerShellTestRoot -Recurse -Destination $packageRoot -Force
Write-Verbose -Message " Copied test directory "
# Copy assests folder to package root for wix related tests.
$assetsPath = Join-Path $PSScriptRoot 'assets'
Copy-Item $assetsPath -Recurse -Destination $packageRoot -Force
Write-Verbose -Message " Copied assests directory "
# Create expected folder structure for resx files in package root.
$srcRootForResx = New-Item -Path " $packageRoot /src " -Force -ItemType Directory
$resourceDirectories = Get-ChildItem -Recurse " $PSScriptRoot /src " -Directory -Filter 'resources'
$resourceDirectories | ForEach-Object {
$directoryFullName = $_ . FullName
$partToRemove = Join-Path $PSScriptRoot " src "
$assemblyPart = $directoryFullName . Replace ( $partToRemove , '' )
$assemblyPart = $assemblyPart . TrimStart ( [ io.path ] :: DirectorySeparatorChar )
$resxDestPath = Join-Path $srcRootForResx $assemblyPart
$null = New-Item -Path $resxDestPath -Force -ItemType Directory
Write-Verbose -Message " Created resx directory : $resxDestPath "
Copy-Item -Path " $directoryFullName \* " -Recurse $resxDestPath -Force
}
Add-Type -AssemblyName System . IO . Compression . FileSystem
if ( Test-Path $packagePath )
{
Remove-Item -Path $packagePath -Force
}
[ System.IO.Compression.ZipFile ] :: CreateFromDirectory ( $packageRoot , $packagePath )
}
2018-11-06 02:48:05 +08:00
function New-NugetConfigFile
{
param (
[ Parameter ( Mandatory = $true ) ] [ string ] $NugetFeedUrl ,
[ Parameter ( Mandatory = $true ) ] [ string ] $FeedName ,
[ Parameter ( Mandatory = $true ) ] [ string ] $UserName ,
[ Parameter ( Mandatory = $true ) ] [ string ] $ClearTextPAT ,
[ Parameter ( Mandatory = $true ) ] [ string ] $Destination
)
$nugetConfigTemplate = @ '
< ? xml version = " 1.0 " encoding = " utf-8 " ? >
< configuration >
< packageSources >
< clear / >
< add key = " [FEEDNAME] " value = " [FEED] " / >
< / packageSources >
2020-12-15 06:16:55 +08:00
< disabledPackageSources >
< clear / >
< / disabledPackageSources >
2018-11-06 02:48:05 +08:00
< packageSourceCredentials >
< [ FEEDNAME ] >
< add key = " Username " value = " [USERNAME] " / >
< add key = " ClearTextPassword " value = " [PASSWORD] " / >
< / [ FEEDNAME ] >
< / packageSourceCredentials >
< / configuration >
' @
$content = $nugetConfigTemplate . Replace ( '[FEED]' , $NugetFeedUrl ) . Replace ( '[FEEDNAME]' , $FeedName ) . Replace ( '[USERNAME]' , $UserName ) . Replace ( '[PASSWORD]' , $ClearTextPAT )
Set-Content -Path ( Join-Path $Destination 'nuget.config' ) -Value $content -Force
}
2021-09-09 05:30:44 +08:00
function Set-CorrectLocale
{
if ( -not $IsLinux )
{
return
}
$environment = Get-EnvironmentInformation
if ( $environment . IsUbuntu -and $environment . IsUbuntu20 )
{
$env:LC_ALL = 'en_US.UTF-8'
$env:LANG = 'en_US.UTF-8'
sudo locale-gen $env:LANG
sudo update-locale
}
# Output the locale to log it
locale
}
2022-02-18 03:28:52 +08:00
function Install-AzCopy {
$testPath = " C:\Program Files (x86)\Microsoft SDKs\Azure\AzCopy\AzCopy.exe "
if ( Test-Path $testPath ) {
Write-Verbose " AzCopy already installed " -Verbose
return
}
$destination = " $env:TEMP \azcopy81.msi "
Invoke-WebRequest " https://aka.ms/downloadazcopy " -OutFile $destination
Start-Process -FilePath $destination -ArgumentList " /quiet " -Wait
}
function Find-AzCopy {
$searchPaths = " C:\Program Files (x86)\Microsoft SDKs\Azure\AzCopy\AzCopy.exe "
foreach ( $filter in $searchPaths ) {
$azCopy = Get-ChildItem -Path $filter -Recurse -ErrorAction SilentlyContinue | Select-Object -ExpandProperty FullName -First 1
if ( $azCopy ) {
return $azCopy
}
}
$azCopy = Get-Command -Name azCopy -ErrorAction Stop | Select-Object -First 1
return $azCopy . Path
}