2016-02-24 00:21:00 +00:00
|
|
|
# Use the .NET Core APIs to determine the current platform; if a runtime
|
|
|
|
# exception is thrown, we are on FullCLR, not .NET Core.
|
2016-02-22 01:23:43 +00:00
|
|
|
try {
|
|
|
|
$Runtime = [System.Runtime.InteropServices.RuntimeInformation]
|
|
|
|
$OSPlatform = [System.Runtime.InteropServices.OSPlatform]
|
2016-03-04 20:11:01 +00:00
|
|
|
|
|
|
|
$IsCore = $true
|
|
|
|
$IsLinux = $Runtime::IsOSPlatform($OSPlatform::Linux)
|
|
|
|
$IsOSX = $Runtime::IsOSPlatform($OSPlatform::OSX)
|
|
|
|
$IsWindows = $Runtime::IsOSPlatform($OSPlatform::Windows)
|
2016-04-08 22:13:50 +00:00
|
|
|
} catch {
|
|
|
|
# If these are already set, then they're read-only and we're done
|
|
|
|
try {
|
|
|
|
$IsCore = $false
|
|
|
|
$IsLinux = $false
|
|
|
|
$IsOSX = $false
|
|
|
|
$IsWindows = $true
|
|
|
|
}
|
|
|
|
catch { }
|
2016-02-22 01:23:43 +00:00
|
|
|
}
|
2016-02-22 00:21:04 +00:00
|
|
|
|
2016-06-20 18:39:39 +00:00
|
|
|
if ($IsLinux) {
|
|
|
|
$LinuxInfo = Get-Content /etc/os-release | ConvertFrom-StringData
|
|
|
|
}
|
|
|
|
|
2016-04-02 05:01:05 +00:00
|
|
|
|
2016-04-01 21:41:13 +00:00
|
|
|
function Start-PSBuild {
|
2016-03-12 00:19:05 +00:00
|
|
|
[CmdletBinding(DefaultParameterSetName='CoreCLR')]
|
2016-02-21 23:06:39 +00:00
|
|
|
param(
|
2016-04-13 23:41:50 +00:00
|
|
|
[switch]$NoPath,
|
2016-02-24 00:21:00 +00:00
|
|
|
[switch]$Restore,
|
2016-05-06 17:28:45 +00:00
|
|
|
[string]$Output,
|
2016-06-15 10:42:54 +00:00
|
|
|
[switch]$ResGen,
|
2016-06-17 18:23:29 +00:00
|
|
|
[switch]$TypeGen,
|
2016-06-23 02:46:16 +00:00
|
|
|
[switch]$Clean,
|
2016-03-12 00:19:05 +00:00
|
|
|
|
2016-04-08 23:05:39 +00:00
|
|
|
[Parameter(ParameterSetName='CoreCLR')]
|
|
|
|
[switch]$Publish,
|
|
|
|
|
2016-03-03 23:54:52 +00:00
|
|
|
# These runtimes must match those in project.json
|
|
|
|
# We do not use ValidateScript since we want tab completion
|
|
|
|
[ValidateSet("ubuntu.14.04-x64",
|
2016-06-03 03:13:30 +00:00
|
|
|
"debian.8-x64",
|
2016-06-17 01:39:29 +00:00
|
|
|
"centos.7-x64",
|
2016-03-03 23:54:52 +00:00
|
|
|
"win7-x64",
|
2016-04-02 00:01:18 +00:00
|
|
|
"win81-x64",
|
2016-03-03 23:54:52 +00:00
|
|
|
"win10-x64",
|
|
|
|
"osx.10.11-x64")]
|
2016-03-12 00:19:05 +00:00
|
|
|
[Parameter(ParameterSetName='CoreCLR')]
|
|
|
|
[string]$Runtime,
|
|
|
|
|
2016-06-23 02:46:16 +00:00
|
|
|
[Parameter(ParameterSetName='FullCLR', Mandatory=$true)]
|
2016-03-12 00:19:05 +00:00
|
|
|
[switch]$FullCLR,
|
|
|
|
|
2016-06-21 21:30:26 +00:00
|
|
|
[Parameter(ParameterSetName='FullCLR')]
|
2016-06-23 02:46:16 +00:00
|
|
|
[switch]$XamlGen,
|
2016-06-21 21:30:26 +00:00
|
|
|
|
2016-03-12 00:19:05 +00:00
|
|
|
[Parameter(ParameterSetName='FullCLR')]
|
2016-06-14 19:27:28 +00:00
|
|
|
[string]$cmakeGenerator = "Visual Studio 14 2015 Win64",
|
2016-03-12 00:19:05 +00:00
|
|
|
|
|
|
|
[Parameter(ParameterSetName='FullCLR')]
|
|
|
|
[ValidateSet("Debug",
|
2016-04-01 21:41:13 +00:00
|
|
|
"Release")]
|
|
|
|
[string]$msbuildConfiguration = "Release"
|
2016-02-24 00:21:00 +00:00
|
|
|
)
|
2016-02-21 23:06:39 +00:00
|
|
|
|
2016-06-23 02:46:16 +00:00
|
|
|
if ($Clean)
|
|
|
|
{
|
|
|
|
log "Cleaning your working directory. You can also do it with 'git clean -fdX'"
|
|
|
|
git clean -fdX
|
|
|
|
}
|
|
|
|
|
2016-06-01 18:13:49 +00:00
|
|
|
# save Git description to file for PowerShell to include in PSVersionTable
|
|
|
|
git --git-dir="$PSScriptRoot/.git" describe --dirty --abbrev=60 > "$psscriptroot/powershell.version"
|
2016-05-18 22:35:09 +00:00
|
|
|
|
2016-04-01 19:14:09 +00:00
|
|
|
# simplify ParameterSetNames
|
2016-04-01 21:41:13 +00:00
|
|
|
if ($PSCmdlet.ParameterSetName -eq 'FullCLR') {
|
2016-03-12 00:19:05 +00:00
|
|
|
$FullCLR = $true
|
|
|
|
}
|
|
|
|
|
2016-06-20 18:59:14 +00:00
|
|
|
# Add .NET CLI tools to PATH
|
|
|
|
Find-Dotnet
|
2016-04-13 23:41:50 +00:00
|
|
|
|
2016-05-04 20:33:59 +00:00
|
|
|
if ($IsWindows) {
|
|
|
|
# use custom package store - this value is also defined in nuget.config under config/repositoryPath
|
|
|
|
# dotnet restore uses this value as the target for installing the assemblies for referenced nuget packages.
|
|
|
|
# dotnet build does not currently consume the config value but will consume env:NUGET_PACKAGES to resolve these dependencies
|
|
|
|
$env:NUGET_PACKAGES="$PSScriptRoot\Packages"
|
|
|
|
}
|
2016-04-22 16:39:59 +00:00
|
|
|
|
2016-03-12 00:19:05 +00:00
|
|
|
# verify we have all tools in place to do the build
|
2016-06-20 18:39:39 +00:00
|
|
|
$precheck = precheck 'dotnet' "Build dependency 'dotnet' not found in PATH. Run Start-PSBootstrap. Also see: https://dotnet.github.io/getting-started/"
|
2016-04-01 21:41:13 +00:00
|
|
|
if ($FullCLR) {
|
2016-03-12 00:19:05 +00:00
|
|
|
# cmake is needed to build powershell.exe
|
|
|
|
$precheck = $precheck -and (precheck 'cmake' 'cmake not found. You can install it from https://chocolatey.org/packages/cmake.portable')
|
2016-04-01 21:41:13 +00:00
|
|
|
|
2016-06-23 02:46:16 +00:00
|
|
|
Use-MSBuild
|
2016-06-16 23:43:51 +00:00
|
|
|
#mc.exe is Message Compiler for native resources
|
|
|
|
$mcexe = Get-ChildItem "${env:ProgramFiles(x86)}\Microsoft SDKs\Windows\" -Recurse -Filter 'mc.exe' | ? {$_.FullName -match 'x64'} | select -First 1 | % {$_.FullName}
|
|
|
|
if (-not $mcexe) {
|
|
|
|
throw 'mc.exe not found. Install Microsoft Windows SDK.'
|
|
|
|
}
|
|
|
|
|
2016-04-10 00:59:13 +00:00
|
|
|
} elseif ($IsLinux -or $IsOSX) {
|
2016-04-01 21:42:40 +00:00
|
|
|
foreach ($Dependency in 'cmake', 'make', 'g++') {
|
2016-06-20 18:39:39 +00:00
|
|
|
$precheck = $precheck -and (precheck $Dependency "Build dependency '$Dependency' not found. Run Start-PSBootstrap.")
|
2016-04-01 21:42:40 +00:00
|
|
|
}
|
|
|
|
}
|
2016-04-01 21:43:18 +00:00
|
|
|
|
2016-04-01 21:41:13 +00:00
|
|
|
# Abort if any precheck failed
|
|
|
|
if (-not $precheck) {
|
|
|
|
return
|
|
|
|
}
|
2016-02-21 23:06:39 +00:00
|
|
|
|
2016-04-14 22:06:14 +00:00
|
|
|
# set output options
|
2016-05-06 17:28:45 +00:00
|
|
|
$OptionsArguments = @{Publish=$Publish; Output=$Output; FullCLR=$FullCLR; Runtime=$Runtime}
|
2016-04-14 22:06:14 +00:00
|
|
|
$script:Options = New-PSOptions @OptionsArguments
|
2016-04-02 00:51:38 +00:00
|
|
|
|
2016-04-14 22:06:14 +00:00
|
|
|
# setup arguments
|
2016-04-02 00:51:38 +00:00
|
|
|
$Arguments = @()
|
2016-04-08 23:05:39 +00:00
|
|
|
if ($Publish) {
|
|
|
|
$Arguments += "publish"
|
|
|
|
} else {
|
|
|
|
$Arguments += "build"
|
|
|
|
}
|
2016-05-06 17:28:45 +00:00
|
|
|
if ($Output) {
|
|
|
|
$Arguments += "--output", (Join-Path $PSScriptRoot $Output)
|
|
|
|
}
|
2016-04-14 22:06:14 +00:00
|
|
|
$Arguments += "--configuration", $Options.Configuration
|
|
|
|
$Arguments += "--framework", $Options.Framework
|
|
|
|
$Arguments += "--runtime", $Options.Runtime
|
2016-04-02 00:51:38 +00:00
|
|
|
|
2016-03-12 02:24:43 +00:00
|
|
|
# handle Restore
|
2016-04-14 22:06:14 +00:00
|
|
|
if ($Restore -or -not (Test-Path "$($Options.Top)/project.lock.json")) {
|
2016-03-12 02:24:43 +00:00
|
|
|
log "Run dotnet restore"
|
2016-03-25 21:58:09 +00:00
|
|
|
|
2016-04-02 01:14:55 +00:00
|
|
|
$RestoreArguments = @("--verbosity")
|
2016-03-25 21:58:09 +00:00
|
|
|
if ($PSCmdlet.MyInvocation.BoundParameters["Verbose"].IsPresent) {
|
2016-04-02 01:14:55 +00:00
|
|
|
$RestoreArguments += "Info"
|
2016-04-01 21:41:13 +00:00
|
|
|
} else {
|
2016-04-02 01:14:55 +00:00
|
|
|
$RestoreArguments += "Warning"
|
2016-04-01 21:41:13 +00:00
|
|
|
}
|
2016-03-25 21:58:09 +00:00
|
|
|
|
2016-04-02 01:14:55 +00:00
|
|
|
$RestoreArguments += "$PSScriptRoot"
|
2016-03-25 21:58:09 +00:00
|
|
|
|
2016-04-19 23:59:03 +00:00
|
|
|
Start-NativeExecution { dotnet restore $RestoreArguments }
|
2016-02-21 23:06:39 +00:00
|
|
|
}
|
|
|
|
|
2016-06-15 10:42:54 +00:00
|
|
|
# handle ResGen
|
2016-06-17 14:51:32 +00:00
|
|
|
# Heuristic to run ResGen on the fresh machine
|
|
|
|
if ($ResGen -or -not (Test-Path "$PSScriptRoot/src/Microsoft.PowerShell.ConsoleHost/gen"))
|
2016-06-15 10:42:54 +00:00
|
|
|
{
|
|
|
|
log "Run ResGen (generating C# bindings for resx files)"
|
|
|
|
Start-ResGen
|
|
|
|
}
|
|
|
|
|
2016-06-21 21:30:26 +00:00
|
|
|
# handle xaml files
|
|
|
|
# Heuristic to resolve xaml on the fresh machine
|
2016-06-23 02:46:16 +00:00
|
|
|
if ($FullCLR -and ($XamlGen -or -not (Test-Path "$PSScriptRoot/src/Microsoft.PowerShell.Activities/gen/*.g.resources")))
|
2016-06-21 21:30:26 +00:00
|
|
|
{
|
2016-06-23 02:46:16 +00:00
|
|
|
log "Run XamlGen (generating .g.cs and .resources for .xaml files)"
|
|
|
|
Start-XamlGen -MSBuildConfiguration $msbuildConfiguration
|
2016-06-21 21:30:26 +00:00
|
|
|
}
|
|
|
|
|
2016-03-12 00:19:05 +00:00
|
|
|
# Build native components
|
2016-04-10 00:59:13 +00:00
|
|
|
if ($IsLinux -or $IsOSX) {
|
2016-04-01 21:42:40 +00:00
|
|
|
$Ext = if ($IsLinux) {
|
|
|
|
"so"
|
|
|
|
} elseif ($IsOSX) {
|
|
|
|
"dylib"
|
|
|
|
}
|
2016-02-21 23:06:39 +00:00
|
|
|
|
2016-04-01 21:42:40 +00:00
|
|
|
$Native = "$PSScriptRoot/src/libpsl-native"
|
2016-04-14 22:06:14 +00:00
|
|
|
$Lib = "$($Options.Top)/libpsl-native.$Ext"
|
2016-04-01 21:42:40 +00:00
|
|
|
log "Start building $Lib"
|
2016-02-24 19:50:56 +00:00
|
|
|
|
2016-04-01 21:42:40 +00:00
|
|
|
try {
|
|
|
|
Push-Location $Native
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Debug .
|
|
|
|
make -j
|
|
|
|
make test
|
|
|
|
} finally {
|
|
|
|
Pop-Location
|
2016-03-12 00:19:05 +00:00
|
|
|
}
|
2016-04-01 21:42:40 +00:00
|
|
|
|
2016-04-10 00:59:13 +00:00
|
|
|
if (-not (Test-Path $Lib)) {
|
2016-04-01 21:42:40 +00:00
|
|
|
throw "Compilation of $Lib failed"
|
|
|
|
}
|
|
|
|
} elseif ($FullCLR) {
|
2016-03-12 02:24:43 +00:00
|
|
|
log "Start building native powershell.exe"
|
2016-02-21 23:06:39 +00:00
|
|
|
|
2016-04-01 21:41:13 +00:00
|
|
|
try {
|
2016-04-14 22:06:14 +00:00
|
|
|
Push-Location "$PSScriptRoot\src\powershell-native"
|
2016-02-21 23:06:39 +00:00
|
|
|
|
2016-06-16 23:43:51 +00:00
|
|
|
# Compile native resources
|
|
|
|
@("nativemsh/pwrshplugin") | % {
|
|
|
|
$nativeResourcesFolder = $_
|
|
|
|
Get-ChildItem $nativeResourcesFolder -Filter "*.mc" | % {
|
2016-06-23 02:46:16 +00:00
|
|
|
# & $mcexe -c -U $_.FullName -h $nativeResourcesFolder -r $nativeResourcesFolder
|
2016-06-16 23:43:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-01 21:41:13 +00:00
|
|
|
if ($cmakeGenerator) {
|
2016-06-23 02:46:16 +00:00
|
|
|
Start-NativeExecution { cmake -G $cmakeGenerator . }
|
2016-04-01 21:41:13 +00:00
|
|
|
} else {
|
2016-06-23 02:46:16 +00:00
|
|
|
Start-NativeExecution { cmake . }
|
2016-03-12 00:19:05 +00:00
|
|
|
}
|
2016-04-02 06:09:39 +00:00
|
|
|
|
2016-06-23 02:46:16 +00:00
|
|
|
Start-NativeExecution { msbuild powershell.vcxproj /p:Configuration=$msbuildConfiguration }
|
2016-04-02 06:09:39 +00:00
|
|
|
|
2016-04-01 21:41:13 +00:00
|
|
|
} finally {
|
|
|
|
Pop-Location
|
2016-03-12 00:19:05 +00:00
|
|
|
}
|
|
|
|
}
|
2016-02-21 23:06:39 +00:00
|
|
|
|
2016-06-17 18:23:29 +00:00
|
|
|
# handle TypeGen
|
|
|
|
if ($TypeGen -or -not (Test-Path "$PSScriptRoot/src/Microsoft.PowerShell.CoreCLR.AssemblyLoadContext/CorePsTypeCatalog.cs"))
|
|
|
|
{
|
|
|
|
log "Run TypeGen (generating CorePsTypeCatalog.cs)"
|
|
|
|
Start-TypeGen
|
|
|
|
}
|
|
|
|
|
2016-04-01 21:41:13 +00:00
|
|
|
try {
|
2016-04-01 19:14:09 +00:00
|
|
|
# Relative paths do not work well if cwd is not changed to project
|
2016-04-14 22:06:14 +00:00
|
|
|
Push-Location $Options.Top
|
2016-04-19 23:39:06 +00:00
|
|
|
log "Run dotnet $Arguments from $pwd"
|
2016-04-19 23:59:03 +00:00
|
|
|
Start-NativeExecution { dotnet $Arguments }
|
2016-04-14 22:06:14 +00:00
|
|
|
log "PowerShell output: $($Options.Output)"
|
2016-04-01 21:41:13 +00:00
|
|
|
} finally {
|
2016-04-01 19:14:09 +00:00
|
|
|
Pop-Location
|
2016-03-12 00:19:05 +00:00
|
|
|
}
|
2016-04-02 00:51:38 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-04-02 05:01:05 +00:00
|
|
|
|
2016-04-14 22:06:14 +00:00
|
|
|
function New-PSOptions {
|
|
|
|
[CmdletBinding()]
|
|
|
|
param(
|
|
|
|
[ValidateSet("Linux", "Debug", "Release")]
|
|
|
|
[string]$Configuration,
|
|
|
|
|
2016-04-19 03:22:20 +00:00
|
|
|
[ValidateSet("netcoreapp1.0", "net451")]
|
2016-04-14 22:06:14 +00:00
|
|
|
[string]$Framework,
|
|
|
|
|
|
|
|
# These are duplicated from Start-PSBuild
|
|
|
|
# We do not use ValidateScript since we want tab completion
|
|
|
|
[ValidateSet("",
|
|
|
|
"ubuntu.14.04-x64",
|
2016-06-03 03:13:30 +00:00
|
|
|
"debian.8-x64",
|
2016-06-17 01:39:29 +00:00
|
|
|
"centos.7-x64",
|
2016-04-14 22:06:14 +00:00
|
|
|
"win7-x64",
|
|
|
|
"win81-x64",
|
|
|
|
"win10-x64",
|
|
|
|
"osx.10.11-x64")]
|
|
|
|
[string]$Runtime,
|
|
|
|
|
|
|
|
[switch]$Publish,
|
2016-05-06 17:28:45 +00:00
|
|
|
[string]$Output,
|
2016-04-14 22:06:14 +00:00
|
|
|
|
|
|
|
[switch]$FullCLR
|
|
|
|
)
|
|
|
|
|
2016-06-20 18:59:14 +00:00
|
|
|
# Add .NET CLI tools to PATH
|
|
|
|
Find-Dotnet
|
|
|
|
|
2016-05-09 21:40:52 +00:00
|
|
|
if ($FullCLR) {
|
|
|
|
$Top = "$PSScriptRoot/src/Microsoft.PowerShell.ConsoleHost"
|
|
|
|
} else {
|
|
|
|
$Top = "$PSScriptRoot/src/powershell"
|
|
|
|
}
|
|
|
|
Write-Verbose "Top project directory is $Top"
|
2016-04-14 22:06:14 +00:00
|
|
|
|
|
|
|
if (-not $Configuration) {
|
|
|
|
$Configuration = if ($IsLinux -or $IsOSX) {
|
|
|
|
"Linux"
|
|
|
|
} elseif ($IsWindows) {
|
|
|
|
"Debug"
|
|
|
|
}
|
|
|
|
log "Using configuration '$Configuration'"
|
|
|
|
}
|
|
|
|
|
|
|
|
if (-not $Framework) {
|
|
|
|
$Framework = if ($FullCLR) {
|
|
|
|
"net451"
|
|
|
|
} else {
|
2016-04-19 03:22:20 +00:00
|
|
|
"netcoreapp1.0"
|
2016-04-14 22:06:14 +00:00
|
|
|
}
|
|
|
|
log "Using framework '$Framework'"
|
|
|
|
}
|
|
|
|
|
|
|
|
if (-not $Runtime) {
|
|
|
|
$Runtime = dotnet --info | % {
|
|
|
|
if ($_ -match "RID") {
|
|
|
|
$_ -split "\s+" | Select-Object -Last 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (-not $Runtime) {
|
|
|
|
Throw "Could not determine Runtime Identifier, please update dotnet"
|
|
|
|
} else {
|
|
|
|
log "Using runtime '$Runtime'"
|
|
|
|
}
|
2016-04-02 05:01:37 +00:00
|
|
|
}
|
|
|
|
|
2016-04-14 22:06:14 +00:00
|
|
|
$Executable = if ($IsLinux -or $IsOSX) {
|
|
|
|
"powershell"
|
|
|
|
} elseif ($IsWindows) {
|
|
|
|
"powershell.exe"
|
|
|
|
}
|
|
|
|
|
2016-05-06 17:28:45 +00:00
|
|
|
# Build the Output path
|
|
|
|
if ($Output) {
|
|
|
|
$Output = Join-Path $PSScriptRoot $Output
|
|
|
|
} else {
|
|
|
|
$Output = [IO.Path]::Combine($Top, "bin", $Configuration, $Framework)
|
2016-04-14 22:06:14 +00:00
|
|
|
|
2016-05-06 17:28:45 +00:00
|
|
|
# FullCLR only builds a library, so there is no runtime component
|
|
|
|
if (-not $FullCLR) {
|
|
|
|
$Output = [IO.Path]::Combine($Output, $Runtime)
|
|
|
|
}
|
2016-04-14 22:06:14 +00:00
|
|
|
|
2016-05-06 17:28:45 +00:00
|
|
|
# Publish injects the publish directory
|
|
|
|
if ($Publish) {
|
|
|
|
$Output = [IO.Path]::Combine($Output, "publish")
|
|
|
|
}
|
2016-04-14 22:06:14 +00:00
|
|
|
|
2016-05-06 17:28:45 +00:00
|
|
|
$Output = [IO.Path]::Combine($Output, $Executable)
|
|
|
|
}
|
2016-04-14 22:06:14 +00:00
|
|
|
|
|
|
|
return @{ Top = $Top;
|
|
|
|
Configuration = $Configuration;
|
|
|
|
Framework = $Framework;
|
|
|
|
Runtime = $Runtime;
|
|
|
|
Output = $Output }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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-21 23:06:39 +00:00
|
|
|
}
|
|
|
|
|
2016-04-02 05:01:05 +00:00
|
|
|
|
2016-04-02 05:01:45 +00:00
|
|
|
function Start-PSPester {
|
|
|
|
[CmdletBinding()]param(
|
2016-05-19 21:30:55 +00:00
|
|
|
[string]$Flags = "-ExcludeTag 'Slow' -EnableExit -OutputFile pester-tests.xml -OutputFormat NUnitXml",
|
2016-04-02 05:01:45 +00:00
|
|
|
[string]$Tests = "*",
|
|
|
|
[ValidateScript({ Test-Path -PathType Container $_})]
|
|
|
|
[string]$Directory = "$PSScriptRoot/test/powershell"
|
|
|
|
)
|
|
|
|
|
2016-06-24 19:23:18 +00:00
|
|
|
& (Get-PSOutput) -noprofile -c "Import-Module '$PSScriptRoot/src/Modules/Pester'; Invoke-Pester $Flags $Directory/$Tests"
|
2016-04-02 05:01:45 +00:00
|
|
|
if ($LASTEXITCODE -ne 0) {
|
|
|
|
throw "$LASTEXITCODE Pester tests failed"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-04-02 03:45:32 +00:00
|
|
|
function Start-PSxUnit {
|
2016-04-02 05:01:05 +00:00
|
|
|
[CmdletBinding()]param()
|
2016-06-20 18:59:14 +00:00
|
|
|
|
2016-04-02 03:45:32 +00:00
|
|
|
if ($IsWindows) {
|
|
|
|
throw "xUnit tests are only currently supported on Linux / OS X"
|
|
|
|
}
|
2016-04-02 05:01:37 +00:00
|
|
|
|
2016-04-14 22:09:35 +00:00
|
|
|
if ($IsOSX) {
|
|
|
|
log "Not yet supported on OS X, pretending they passed..."
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-06-20 18:59:14 +00:00
|
|
|
# Add .NET CLI tools to PATH
|
|
|
|
Find-Dotnet
|
|
|
|
|
2016-06-01 18:10:29 +00:00
|
|
|
$Arguments = "--configuration", "Linux", "-parallel", "none"
|
2016-05-31 23:06:19 +00:00
|
|
|
if ($PSCmdlet.MyInvocation.BoundParameters["Verbose"].IsPresent) {
|
2016-06-01 18:10:29 +00:00
|
|
|
$Arguments += "-verbose"
|
2016-05-31 23:06:19 +00:00
|
|
|
}
|
|
|
|
|
2016-04-02 05:01:37 +00:00
|
|
|
$Content = Split-Path -Parent (Get-PSOutput)
|
2016-06-01 18:10:29 +00:00
|
|
|
if (-not (Test-Path $Content)) {
|
|
|
|
throw "PowerShell must be built before running tests!"
|
|
|
|
}
|
|
|
|
|
2016-04-02 03:45:32 +00:00
|
|
|
try {
|
|
|
|
Push-Location $PSScriptRoot/test/csharp
|
2016-04-25 21:11:13 +00:00
|
|
|
# Path manipulation to obtain test project output directory
|
|
|
|
$Output = Join-Path $pwd ((Split-Path -Parent (Get-PSOutput)) -replace (New-PSOptions).Top)
|
2016-06-01 18:10:29 +00:00
|
|
|
Write-Verbose "Output is $Output"
|
2016-04-19 03:22:20 +00:00
|
|
|
|
2016-04-25 21:11:13 +00:00
|
|
|
Copy-Item -ErrorAction SilentlyContinue -Recurse -Path $Content/* -Include Modules,libpsl-native* -Destination $Output
|
2016-06-01 18:10:29 +00:00
|
|
|
Start-NativeExecution { dotnet test $Arguments }
|
2016-04-19 03:22:20 +00:00
|
|
|
|
2016-04-02 03:45:32 +00:00
|
|
|
if ($LASTEXITCODE -ne 0) {
|
|
|
|
throw "$LASTEXITCODE xUnit tests failed"
|
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
Pop-Location
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-13 22:11:38 +00:00
|
|
|
|
|
|
|
function Start-PSBootstrap {
|
2016-06-14 20:33:19 +00:00
|
|
|
[CmdletBinding()]param(
|
|
|
|
[ValidateSet("dev", "beta", "preview")]
|
2016-06-23 20:23:03 +00:00
|
|
|
[string]$Channel = "rel-1.0.0",
|
2016-06-16 17:55:11 +00:00
|
|
|
[string]$Version = "latest"
|
2016-06-14 20:33:19 +00:00
|
|
|
)
|
2016-04-13 22:11:38 +00:00
|
|
|
|
2016-06-23 02:46:16 +00:00
|
|
|
log "Installing Open PowerShell build dependencies"
|
2016-04-13 22:11:38 +00:00
|
|
|
|
2016-06-10 21:02:25 +00:00
|
|
|
Push-Location $PSScriptRoot/tools
|
2016-04-13 22:11:38 +00:00
|
|
|
|
2016-06-10 21:02:25 +00:00
|
|
|
try {
|
|
|
|
# Install dependencies for Linux and OS X
|
|
|
|
if ($IsLinux) {
|
2016-06-20 19:13:12 +00:00
|
|
|
if ($LinuxInfo.ID -match 'ubuntu' -and $LinuxInfo.VERSION_ID -match '14.04') {
|
2016-06-10 21:02:25 +00:00
|
|
|
# Install ours and .NET's dependencies
|
2016-06-20 19:08:44 +00:00
|
|
|
sudo apt-get install -y -qq curl make g++ cmake libc6 libgcc1 libstdc++6 libcurl3 libgssapi-krb5-2 libicu52 liblldb-3.6 liblttng-ust0 libssl1.0.0 libunwind8 libuuid1 zlib1g clang-3.5
|
2016-06-20 19:13:12 +00:00
|
|
|
} elseif ($LinuxInfo.ID -match 'centos' -and $LinuxInfo.VERSION_ID -match '7') {
|
2016-06-20 19:16:14 +00:00
|
|
|
sudo yum install -y -q curl make gcc-c++ cmake glibc libgcc libstdc++ libcurl krb5-libs libicu lldb openssl-libs libunwind libuuid zlib clang
|
2016-06-10 21:02:25 +00:00
|
|
|
} else {
|
2016-06-20 18:39:39 +00:00
|
|
|
Write-Warning "This script only supports Ubuntu 14.04 and CentOS 7, you must install dependencies manually!"
|
2016-06-10 21:02:25 +00:00
|
|
|
}
|
|
|
|
} elseif ($IsOSX) {
|
|
|
|
precheck 'brew' "Bootstrap dependency 'brew' not found, must install Homebrew! See http://brew.sh/"
|
2016-04-13 22:11:38 +00:00
|
|
|
|
2016-06-10 21:02:25 +00:00
|
|
|
# Install ours and .NET's dependencies
|
2016-06-20 19:08:44 +00:00
|
|
|
brew install curl cmake openssl
|
2016-06-10 21:24:20 +00:00
|
|
|
brew link --force openssl
|
2016-06-10 21:02:25 +00:00
|
|
|
}
|
2016-04-13 22:11:38 +00:00
|
|
|
|
2016-06-10 21:02:25 +00:00
|
|
|
$obtainUrl = "https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain"
|
2016-04-13 22:11:38 +00:00
|
|
|
|
2016-06-10 21:02:25 +00:00
|
|
|
# Install for Linux and OS X
|
|
|
|
if ($IsLinux -or $IsOSX) {
|
|
|
|
# Uninstall all previous dotnet packages
|
|
|
|
$uninstallScript = if ($IsUbuntu) {
|
|
|
|
"dotnet-uninstall-debian-packages.sh"
|
|
|
|
} elseif ($IsOSX) {
|
|
|
|
"dotnet-uninstall-pkgs.sh"
|
|
|
|
}
|
2016-04-13 22:11:38 +00:00
|
|
|
|
2016-06-10 21:02:25 +00:00
|
|
|
if ($uninstallScript) {
|
|
|
|
curl -s $obtainUrl/uninstall/$uninstallScript -o $uninstallScript
|
|
|
|
chmod +x $uninstallScript
|
|
|
|
sudo ./$uninstallScript
|
|
|
|
} else {
|
|
|
|
Write-Warning "This script only removes prior versions of dotnet for Ubuntu 14.04 and OS X"
|
|
|
|
}
|
2016-04-13 23:41:50 +00:00
|
|
|
|
2016-06-10 21:02:25 +00:00
|
|
|
# Install new dotnet 1.0.0 preview packages
|
|
|
|
$installScript = "dotnet-install.sh"
|
|
|
|
curl -s $obtainUrl/$installScript -o $installScript
|
|
|
|
chmod +x $installScript
|
2016-06-14 20:33:19 +00:00
|
|
|
bash ./$installScript -c $Channel -v $Version
|
2016-06-10 21:02:25 +00:00
|
|
|
}
|
2016-04-13 23:41:50 +00:00
|
|
|
|
2016-06-10 21:02:25 +00:00
|
|
|
# Install for Windows
|
|
|
|
if ($IsWindows -and -not $IsCore) {
|
|
|
|
Remove-Item -ErrorAction SilentlyContinue -Recurse -Force ~\AppData\Local\Microsoft\dotnet
|
|
|
|
$installScript = "dotnet-install.ps1"
|
|
|
|
Invoke-WebRequest -Uri $obtainUrl/$installScript -OutFile $installScript
|
2016-06-14 20:33:19 +00:00
|
|
|
& ./$installScript -c $Channel -v $Version
|
2016-06-10 21:02:25 +00:00
|
|
|
} elseif ($IsWindows) {
|
|
|
|
Write-Warning "Start-PSBootstrap cannot be run in Core PowerShell on Windows (need Invoke-WebRequest!)"
|
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
Pop-Location
|
2016-04-13 22:11:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-04-01 21:41:13 +00:00
|
|
|
function Start-PSPackage {
|
2016-04-02 05:01:05 +00:00
|
|
|
[CmdletBinding()]param(
|
2016-04-10 01:02:37 +00:00
|
|
|
# PowerShell packages use Semantic Versioning http://semver.org/
|
2016-02-24 00:21:00 +00:00
|
|
|
[string]$Version,
|
2016-04-10 01:02:37 +00:00
|
|
|
# Package iteration version (rarely changed)
|
2016-02-27 02:51:13 +00:00
|
|
|
[int]$Iteration = 1,
|
2016-04-10 01:02:37 +00:00
|
|
|
# Ubuntu, CentOS, and OS X packages are supported
|
2016-02-27 02:51:13 +00:00
|
|
|
[ValidateSet("deb", "osxpkg", "rpm")]
|
|
|
|
[string]$Type
|
2016-02-24 00:21:00 +00:00
|
|
|
)
|
2016-02-22 00:21:04 +00:00
|
|
|
|
2016-04-10 01:02:37 +00:00
|
|
|
$Description = @"
|
|
|
|
Open PowerShell on .NET Core
|
|
|
|
PowerShell is an open-source, cross-platform, scripting language and rich object shell.
|
|
|
|
Built upon .NET Core, it is also a C# REPL.
|
|
|
|
"@
|
|
|
|
|
2016-05-24 21:29:19 +00:00
|
|
|
# Use Git tag if not given a version
|
|
|
|
if (-not $Version) {
|
|
|
|
$Version = (git --git-dir="$PSScriptRoot/.git" describe) -Replace '^v'
|
|
|
|
}
|
2016-02-22 00:21:04 +00:00
|
|
|
|
2016-05-24 21:29:19 +00:00
|
|
|
$Source = Split-Path -Parent (Get-PSOutput -Options (New-PSOptions -Publish))
|
|
|
|
Write-Verbose "Packaging $Source"
|
|
|
|
|
|
|
|
if ($IsWindows) {
|
2016-06-06 20:20:00 +00:00
|
|
|
$msiPackagePath = New-MSIPackage -ProductSourcePath $Source -ProductVersion $Version -Verbose
|
2016-06-02 17:31:02 +00:00
|
|
|
$appxPackagePath = New-AppxPackage -PackageVersion $Version -SourcePath $Source -AssetsPath "$PSScriptRoot\Assets" -Verbose
|
|
|
|
|
|
|
|
$packages = @($msiPackagePath, $appxPackagePath)
|
2016-06-20 20:03:54 +00:00
|
|
|
|
2016-06-02 17:31:02 +00:00
|
|
|
return $packages
|
2016-02-22 00:21:04 +00:00
|
|
|
}
|
|
|
|
|
2016-05-24 21:29:19 +00:00
|
|
|
if (-not (Get-Command "fpm" -ErrorAction SilentlyContinue)) {
|
|
|
|
throw "Build dependency 'fpm' not found in PATH! See: https://github.com/jordansissel/fpm"
|
2016-02-24 00:21:00 +00:00
|
|
|
}
|
2016-02-22 00:21:04 +00:00
|
|
|
|
2016-02-24 00:21:00 +00:00
|
|
|
# Decide package output type
|
2016-04-10 01:02:37 +00:00
|
|
|
if (-not $Type) {
|
2016-06-20 20:03:54 +00:00
|
|
|
$Type = if ($IsLinux) {
|
|
|
|
if ($LinuxInfo.ID -match 'ubuntu') {
|
|
|
|
"deb"
|
|
|
|
} elseif ($LinuxInfo.ID -match 'centos') {
|
|
|
|
"rpm"
|
|
|
|
} else {
|
|
|
|
throw "Building packages for $($LinuxInfo.PRETTY_NAME) is unsupported!"
|
|
|
|
}
|
|
|
|
} elseif ($IsOSX) {
|
|
|
|
'osxpkg'
|
|
|
|
}
|
2016-02-27 02:51:13 +00:00
|
|
|
Write-Warning "-Type was not specified, continuing with $Type"
|
|
|
|
}
|
2016-02-22 00:21:04 +00:00
|
|
|
|
2016-04-10 01:02:37 +00:00
|
|
|
# Follow the Filesystem Hierarchy Standard for Linux and OS X
|
|
|
|
$Destination = if ($IsLinux) {
|
|
|
|
"/opt/microsoft/powershell"
|
|
|
|
} elseif ($IsOSX) {
|
|
|
|
"/usr/local/microsoft/powershell"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Destination for symlink to powershell executable
|
|
|
|
$Link = if ($IsLinux) {
|
|
|
|
"/usr/bin"
|
|
|
|
} elseif ($IsOSX) {
|
|
|
|
"/usr/local/bin"
|
|
|
|
}
|
|
|
|
|
|
|
|
New-Item -Force -ItemType SymbolicLink -Path /tmp/powershell -Target $Destination/powershell >$null
|
2016-05-24 21:29:19 +00:00
|
|
|
|
2016-05-16 21:53:40 +00:00
|
|
|
# there is a weired bug in fpm
|
|
|
|
# if the target of the powershell symlink exists, `fpm` aborts
|
|
|
|
# with a `utime` error on OS X.
|
|
|
|
# so we move it to make symlink broken
|
|
|
|
$symlink_dest = "$Destination/powershell"
|
|
|
|
$hack_dest = "./_fpm_symlink_hack_powershell"
|
|
|
|
if ($IsOSX)
|
|
|
|
{
|
|
|
|
if (Test-Path $symlink_dest)
|
|
|
|
{
|
|
|
|
Write-Warning "Move $symlink_dest to $hack_dest (fpm utime bug)"
|
|
|
|
Move-Item $symlink_dest $hack_dest
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-10 01:02:37 +00:00
|
|
|
# Change permissions for packaging
|
|
|
|
chmod -R go=u $Source /tmp/powershell
|
|
|
|
|
2016-02-27 02:51:13 +00:00
|
|
|
$libunwind = switch ($Type) {
|
|
|
|
"deb" { "libunwind8" }
|
|
|
|
"rpm" { "libunwind" }
|
|
|
|
}
|
|
|
|
|
|
|
|
$libicu = switch ($Type) {
|
|
|
|
"deb" { "libicu52" }
|
|
|
|
"rpm" { "libicu" }
|
|
|
|
}
|
|
|
|
|
2016-04-10 01:02:37 +00:00
|
|
|
|
|
|
|
$Arguments = @(
|
|
|
|
"--force", "--verbose",
|
|
|
|
"--name", "powershell",
|
|
|
|
"--version", $Version,
|
|
|
|
"--iteration", $Iteration,
|
|
|
|
"--maintainer", "Andrew Schwartzmeyer <andschwa@microsoft.com>",
|
|
|
|
"--vendor", "Microsoft <mageng@microsoft.com>",
|
|
|
|
"--url", "https://github.com/PowerShell/PowerShell",
|
|
|
|
"--license", "Unlicensed",
|
|
|
|
"--description", $Description,
|
|
|
|
"--category", "shells",
|
|
|
|
"--rpm-os", "linux",
|
|
|
|
"--depends", $libunwind,
|
|
|
|
"--depends", $libicu,
|
|
|
|
"--deb-build-depends", "dotnet",
|
|
|
|
"--deb-build-depends", "cmake",
|
|
|
|
"--deb-build-depends", "g++",
|
|
|
|
"-t", $Type,
|
|
|
|
"-s", "dir",
|
|
|
|
"$Source/=$Destination/",
|
|
|
|
"/tmp/powershell=$Link"
|
|
|
|
)
|
|
|
|
|
2016-02-24 00:21:00 +00:00
|
|
|
# Build package
|
2016-04-10 01:02:37 +00:00
|
|
|
fpm $Arguments
|
2016-05-16 21:53:40 +00:00
|
|
|
|
|
|
|
if ($IsOSX)
|
|
|
|
{
|
|
|
|
# this is continuation of a fpm hack for a weired bug
|
|
|
|
if (Test-Path $hack_dest)
|
|
|
|
{
|
|
|
|
Write-Warning "Move $hack_dest to $symlink_dest (fpm utime bug)"
|
|
|
|
Move-Item $hack_dest $symlink_dest
|
|
|
|
}
|
|
|
|
}
|
2016-02-22 00:21:04 +00:00
|
|
|
}
|
|
|
|
|
2016-05-20 02:03:43 +00:00
|
|
|
function Publish-NuGetFeed
|
|
|
|
{
|
|
|
|
param(
|
|
|
|
[string]$OutputPath = "$PSScriptRoot/nuget-artifacts",
|
|
|
|
[Parameter(Mandatory=$true)]
|
|
|
|
[string]$VersionSuffix
|
|
|
|
)
|
|
|
|
|
2016-06-20 18:59:14 +00:00
|
|
|
# Add .NET CLI tools to PATH
|
|
|
|
Find-Dotnet
|
|
|
|
|
2016-05-20 02:03:43 +00:00
|
|
|
@(
|
|
|
|
'Microsoft.PowerShell.Commands.Management',
|
|
|
|
'Microsoft.PowerShell.Commands.Utility',
|
|
|
|
'Microsoft.PowerShell.ConsoleHost',
|
|
|
|
'Microsoft.PowerShell.PSReadLine',
|
|
|
|
'Microsoft.PowerShell.Security',
|
|
|
|
'System.Management.Automation'
|
|
|
|
) | % {
|
|
|
|
if ($VersionSuffix)
|
|
|
|
{
|
|
|
|
dotnet pack "src/$_" --output $OutputPath --version-suffix $VersionSuffix
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dotnet pack "src/$_" --output $OutputPath
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-02 05:01:05 +00:00
|
|
|
|
|
|
|
function Start-DevPSGitHub {
|
2016-02-03 18:53:43 +00:00
|
|
|
param(
|
|
|
|
[switch]$ZapDisable,
|
|
|
|
[string[]]$ArgumentList = '',
|
|
|
|
[switch]$LoadProfile,
|
2016-04-05 01:58:53 +00:00
|
|
|
[string]$binDir = "$PSScriptRoot\src\Microsoft.PowerShell.ConsoleHost\bin\Debug\net451",
|
2016-02-04 01:25:51 +00:00
|
|
|
[switch]$NoNewWindow
|
2016-02-03 18:53:43 +00:00
|
|
|
)
|
|
|
|
|
2016-04-02 05:01:05 +00:00
|
|
|
try {
|
|
|
|
if ($LoadProfile -eq $false) {
|
2016-02-04 01:25:51 +00:00
|
|
|
$ArgumentList = @('-noprofile') + $ArgumentList
|
2016-02-03 18:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$env:DEVPATH = $binDir
|
2016-04-02 05:01:05 +00:00
|
|
|
if ($ZapDisable) {
|
2016-02-21 23:06:39 +00:00
|
|
|
$env:COMPLUS_ZapDisable = 1
|
2016-02-03 18:53:43 +00:00
|
|
|
}
|
|
|
|
|
2016-04-10 00:59:13 +00:00
|
|
|
if (-not (Test-Path $binDir\powershell.exe.config)) {
|
2016-02-03 18:53:43 +00:00
|
|
|
$configContents = @"
|
2016-02-21 23:06:39 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<configuration>
|
2016-04-02 05:01:05 +00:00
|
|
|
<runtime>
|
|
|
|
<developmentMode developerInstallation="true"/>
|
|
|
|
</runtime>
|
2016-02-03 18:53:43 +00:00
|
|
|
</configuration>
|
|
|
|
"@
|
|
|
|
$configContents | Out-File -Encoding Ascii $binDir\powershell.exe.config
|
|
|
|
}
|
2016-02-21 23:06:39 +00:00
|
|
|
|
|
|
|
# splatting for the win
|
2016-02-04 01:25:51 +00:00
|
|
|
$startProcessArgs = @{
|
|
|
|
FilePath = "$binDir\powershell.exe"
|
|
|
|
ArgumentList = "$ArgumentList"
|
2016-02-21 23:06:39 +00:00
|
|
|
}
|
2016-02-04 21:19:24 +00:00
|
|
|
|
|
|
|
if ($NoNewWindow) {
|
|
|
|
$startProcessArgs.NoNewWindow = $true
|
|
|
|
$startProcessArgs.Wait = $true
|
|
|
|
}
|
2016-02-21 23:06:39 +00:00
|
|
|
|
2016-02-04 01:25:51 +00:00
|
|
|
Start-Process @startProcessArgs
|
2016-04-02 05:01:05 +00:00
|
|
|
} finally {
|
2016-02-03 18:53:43 +00:00
|
|
|
ri env:DEVPATH
|
2016-04-02 05:01:05 +00:00
|
|
|
if ($ZapDisable) {
|
2016-02-03 18:53:43 +00:00
|
|
|
ri env:COMPLUS_ZapDisable
|
|
|
|
}
|
|
|
|
}
|
2016-02-20 22:35:46 +00:00
|
|
|
}
|
2016-03-22 23:00:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
<#
|
2016-06-14 00:37:24 +00:00
|
|
|
.EXAMPLE
|
|
|
|
PS C:> Copy-MappedFiles -PslMonadRoot .\src\monad
|
|
|
|
|
|
|
|
copy files FROM .\src\monad (old location of submodule) TO src/<project> folders
|
2016-03-22 23:00:20 +00:00
|
|
|
#>
|
2016-06-14 00:37:24 +00:00
|
|
|
function Copy-MappedFiles {
|
2016-04-01 21:41:13 +00:00
|
|
|
|
2016-03-22 23:00:20 +00:00
|
|
|
[CmdletBinding()]
|
|
|
|
param(
|
2016-06-14 00:37:24 +00:00
|
|
|
[Parameter(ValueFromPipeline=$true)]
|
|
|
|
[string[]]$Path = "$PSScriptRoot",
|
|
|
|
[Parameter(Mandatory=$true)]
|
2016-06-14 01:46:15 +00:00
|
|
|
[string]$PslMonadRoot,
|
2016-06-16 02:07:49 +00:00
|
|
|
[switch]$Force,
|
|
|
|
[switch]$WhatIf
|
2016-03-22 23:00:20 +00:00
|
|
|
)
|
|
|
|
|
2016-06-14 00:37:24 +00:00
|
|
|
begin
|
|
|
|
{
|
2016-06-14 01:46:15 +00:00
|
|
|
function MaybeTerminatingWarning
|
|
|
|
{
|
|
|
|
param([string]$Message)
|
|
|
|
|
|
|
|
if ($Force)
|
|
|
|
{
|
|
|
|
Write-Warning "$Message : ignoring (-Force)"
|
|
|
|
}
|
2016-06-16 02:07:49 +00:00
|
|
|
elseif ($WhatIf)
|
|
|
|
{
|
|
|
|
Write-Warning "$Message : ignoring (-WhatIf)"
|
|
|
|
}
|
2016-06-14 01:46:15 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
throw "$Message : use -Force to ignore"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-14 00:37:24 +00:00
|
|
|
if (-not (Test-Path -PathType Container $PslMonadRoot))
|
|
|
|
{
|
|
|
|
throw "$pslMonadRoot is not a valid folder"
|
|
|
|
}
|
2016-04-01 21:41:13 +00:00
|
|
|
|
2016-06-14 01:46:15 +00:00
|
|
|
# Do some intelligens to prevent shouting us in the foot with CL management
|
|
|
|
|
|
|
|
# finding base-line CL
|
2016-06-15 20:27:32 +00:00
|
|
|
$cl = git --git-dir="$PSScriptRoot/.git" tag | % {if ($_ -match 'SD.(\d+)$') {[int]$Matches[1]} } | Sort-Object -Descending | Select-Object -First 1
|
2016-06-14 01:46:15 +00:00
|
|
|
if ($cl)
|
|
|
|
{
|
2016-06-23 02:46:16 +00:00
|
|
|
log "Current base-line CL is SD:$cl (based on tags)"
|
2016-06-14 01:46:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
MaybeTerminatingWarning "Could not determine base-line CL based on tags"
|
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Push-Location $PslMonadRoot
|
2016-06-17 13:14:12 +00:00
|
|
|
if (git status --porcelain -uno)
|
2016-06-14 01:46:15 +00:00
|
|
|
{
|
|
|
|
MaybeTerminatingWarning "$pslMonadRoot has changes"
|
|
|
|
}
|
|
|
|
|
|
|
|
if (git log --grep="SD:$cl" HEAD^..HEAD)
|
|
|
|
{
|
2016-06-23 02:46:16 +00:00
|
|
|
log Green "$pslMonadRoot HEAD matches [SD:$cl]"
|
2016-06-14 01:46:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-06-23 02:46:16 +00:00
|
|
|
Write-Warning "Try to checkout this commit in $pslMonadRoot :"
|
|
|
|
git log --grep="SD:$cl" | Write-Warning
|
2016-06-14 01:46:15 +00:00
|
|
|
MaybeTerminatingWarning "$pslMonadRoot HEAD doesn't match [SD:$cl]"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
|
|
|
Pop-Location
|
|
|
|
}
|
|
|
|
|
|
|
|
$map = @{}
|
2016-03-22 23:00:20 +00:00
|
|
|
}
|
|
|
|
|
2016-06-14 00:37:24 +00:00
|
|
|
process
|
|
|
|
{
|
|
|
|
$map += Get-Mappings $Path -Root $PslMonadRoot
|
|
|
|
}
|
2016-03-22 23:00:20 +00:00
|
|
|
|
2016-06-14 00:37:24 +00:00
|
|
|
end
|
|
|
|
{
|
|
|
|
$map.GetEnumerator() | % {
|
2016-06-15 20:27:32 +00:00
|
|
|
New-Item -ItemType Directory (Split-Path $_.Value) -ErrorAction SilentlyContinue > $null
|
2016-03-22 23:00:20 +00:00
|
|
|
|
2016-06-16 02:07:49 +00:00
|
|
|
Copy-Item $_.Key $_.Value -Verbose:([bool]$PSBoundParameters['Verbose']) -WhatIf:$WhatIf
|
2016-03-22 23:00:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-14 00:37:24 +00:00
|
|
|
function Get-Mappings
|
|
|
|
{
|
|
|
|
[CmdletBinding()]
|
2016-03-22 23:00:20 +00:00
|
|
|
param(
|
2016-06-14 00:37:24 +00:00
|
|
|
[Parameter(ValueFromPipeline=$true)]
|
|
|
|
[string[]]$Path = "$PSScriptRoot",
|
|
|
|
[string]$Root,
|
|
|
|
[switch]$KeepRelativePaths
|
2016-03-22 23:00:20 +00:00
|
|
|
)
|
|
|
|
|
2016-06-14 00:37:24 +00:00
|
|
|
begin
|
|
|
|
{
|
|
|
|
$mapFiles = @()
|
|
|
|
}
|
|
|
|
|
|
|
|
process
|
|
|
|
{
|
|
|
|
Write-Verbose "Discovering map files in $Path"
|
|
|
|
$count = $mapFiles.Count
|
|
|
|
|
|
|
|
if (-not (Test-Path $Path))
|
|
|
|
{
|
|
|
|
throw "Mapping file not found in $mappingFilePath"
|
2016-03-22 23:00:20 +00:00
|
|
|
}
|
2016-04-01 21:41:13 +00:00
|
|
|
|
2016-06-14 00:37:24 +00:00
|
|
|
if (Test-Path -PathType Container $Path)
|
|
|
|
{
|
|
|
|
$mapFiles += Get-ChildItem -Recurse $Path -Filter 'map.json' -File
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
# it exists and it's a file, don't check the name pattern
|
|
|
|
$mapFiles += Get-ChildItem $Path
|
2016-03-22 23:00:20 +00:00
|
|
|
}
|
|
|
|
|
2016-06-14 00:37:24 +00:00
|
|
|
Write-Verbose "Found $($mapFiles.Count - $count) map files in $Path"
|
2016-03-22 23:00:20 +00:00
|
|
|
}
|
|
|
|
|
2016-06-14 00:37:24 +00:00
|
|
|
end
|
|
|
|
{
|
|
|
|
$map = @{}
|
|
|
|
$mapFiles | % {
|
2016-06-15 20:27:32 +00:00
|
|
|
$rawHashtable = $_ | Get-Content -Raw | ConvertFrom-Json | Convert-PSObjectToHashtable
|
2016-06-14 00:37:24 +00:00
|
|
|
$mapRoot = Split-Path $_.FullName
|
|
|
|
if ($KeepRelativePaths)
|
|
|
|
{
|
|
|
|
# not very elegant way to find relative for the current directory path
|
|
|
|
$mapRoot = $mapRoot.Substring($PSScriptRoot.Length + 1)
|
|
|
|
# keep original unix-style paths for git
|
|
|
|
$mapRoot = $mapRoot.Replace('\', '/')
|
2016-03-29 21:17:19 +00:00
|
|
|
}
|
|
|
|
|
2016-06-14 00:37:24 +00:00
|
|
|
$rawHashtable.GetEnumerator() | % {
|
|
|
|
$newKey = if ($Root) { Join-Path $Root $_.Key } else { $_.Key }
|
|
|
|
$newValue = if ($KeepRelativePaths) { ($mapRoot + '/' + $_.Value) } else { Join-Path $mapRoot $_.Value }
|
|
|
|
$map[$newKey] = $newValue
|
2016-03-22 23:00:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-14 00:37:24 +00:00
|
|
|
return $map
|
|
|
|
}
|
2016-03-22 23:00:20 +00:00
|
|
|
}
|
2016-03-23 23:57:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
<#
|
2016-06-14 00:37:24 +00:00
|
|
|
.EXAMPLE Send-GitDiffToSd -diffArg1 32b90c048aa0c5bc8e67f96a98ea01c728c4a5be~1 -diffArg2 32b90c048aa0c5bc8e67f96a98ea01c728c4a5be -AdminRoot d:\e\ps_dev\admin
|
2016-03-23 23:57:59 +00:00
|
|
|
Apply a signle commit to admin folder
|
|
|
|
#>
|
2016-04-02 05:01:05 +00:00
|
|
|
function Send-GitDiffToSd {
|
2016-03-23 23:57:59 +00:00
|
|
|
param(
|
|
|
|
[Parameter(Mandatory)]
|
|
|
|
[string]$diffArg1,
|
|
|
|
[Parameter(Mandatory)]
|
|
|
|
[string]$diffArg2,
|
|
|
|
[Parameter(Mandatory)]
|
2016-06-14 00:37:24 +00:00
|
|
|
[string]$AdminRoot,
|
2016-03-23 23:57:59 +00:00
|
|
|
[switch]$WhatIf
|
|
|
|
)
|
|
|
|
|
2016-06-14 00:37:24 +00:00
|
|
|
# this is only for windows, because you cannot have SD enlistment on Linux
|
|
|
|
$patchPath = (ls (Join-Path (get-command git).Source '..\..') -Recurse -Filter 'patch.exe').FullName
|
|
|
|
$m = Get-Mappings -KeepRelativePaths -Root $AdminRoot
|
2016-03-23 23:57:59 +00:00
|
|
|
$affectedFiles = git diff --name-only $diffArg1 $diffArg2
|
2016-06-14 00:37:24 +00:00
|
|
|
$affectedFiles | % {
|
2016-06-23 02:46:16 +00:00
|
|
|
log "Changes in file $_"
|
2016-06-14 00:37:24 +00:00
|
|
|
}
|
|
|
|
|
2016-03-23 23:57:59 +00:00
|
|
|
$rev = Get-InvertedOrderedMap $m
|
|
|
|
foreach ($file in $affectedFiles) {
|
2016-04-02 05:01:05 +00:00
|
|
|
if ($rev.Contains) {
|
2016-06-14 00:37:24 +00:00
|
|
|
$sdFilePath = $rev[$file]
|
|
|
|
if (-not $sdFilePath)
|
|
|
|
{
|
|
|
|
Write-Warning "Cannot find mapped file for $file, skipping"
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-03-23 23:57:59 +00:00
|
|
|
$diff = git diff $diffArg1 $diffArg2 -- $file
|
2016-04-02 05:01:05 +00:00
|
|
|
if ($diff) {
|
2016-06-23 02:46:16 +00:00
|
|
|
log "Apply patch to $sdFilePath"
|
2016-03-23 23:57:59 +00:00
|
|
|
Set-Content -Value $diff -Path $env:TEMP\diff -Encoding Ascii
|
2016-04-02 05:01:05 +00:00
|
|
|
if ($WhatIf) {
|
2016-06-23 02:46:16 +00:00
|
|
|
log "Patch content"
|
2016-06-15 20:27:32 +00:00
|
|
|
Get-Content $env:TEMP\diff
|
2016-04-02 05:01:05 +00:00
|
|
|
} else {
|
2016-04-01 21:41:13 +00:00
|
|
|
& $patchPath --binary -p1 $sdFilePath $env:TEMP\diff
|
2016-03-23 23:57:59 +00:00
|
|
|
}
|
2016-04-02 05:01:05 +00:00
|
|
|
} else {
|
2016-06-23 02:46:16 +00:00
|
|
|
log "No changes in $file"
|
2016-03-23 23:57:59 +00:00
|
|
|
}
|
2016-04-02 05:01:05 +00:00
|
|
|
} else {
|
2016-06-23 02:46:16 +00:00
|
|
|
log "Ignore changes in $file, because there is no mapping for it"
|
2016-03-23 23:57:59 +00:00
|
|
|
}
|
2016-04-01 21:41:13 +00:00
|
|
|
}
|
2016-03-23 23:57:59 +00:00
|
|
|
}
|
2016-04-02 05:01:05 +00:00
|
|
|
|
2016-06-17 18:23:29 +00:00
|
|
|
function Start-TypeGen
|
|
|
|
{
|
|
|
|
[CmdletBinding()]
|
|
|
|
param()
|
|
|
|
|
|
|
|
if (!$IsWindows)
|
|
|
|
{
|
|
|
|
throw "Start-TypeGen is not supported on non-windows. Use src/TypeCatalogGen/build.sh instead"
|
|
|
|
}
|
|
|
|
|
2016-06-20 18:59:14 +00:00
|
|
|
# Add .NET CLI tools to PATH
|
|
|
|
Find-Dotnet
|
|
|
|
|
2016-06-17 18:23:29 +00:00
|
|
|
Push-Location "$PSScriptRoot/src/TypeCatalogParser"
|
|
|
|
try
|
|
|
|
{
|
|
|
|
dotnet restore -v Warning
|
|
|
|
dotnet run
|
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
|
|
|
Pop-Location
|
|
|
|
}
|
|
|
|
|
|
|
|
Push-Location "$PSScriptRoot/src/TypeCatalogGen"
|
|
|
|
try
|
|
|
|
{
|
|
|
|
dotnet restore -v Warning
|
|
|
|
dotnet run ../Microsoft.PowerShell.CoreCLR.AssemblyLoadContext/CorePsTypeCatalog.cs powershell.inc
|
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
|
|
|
Pop-Location
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-04 21:20:34 +00:00
|
|
|
function Start-ResGen
|
|
|
|
{
|
2016-06-15 10:42:54 +00:00
|
|
|
[CmdletBinding()]
|
|
|
|
param()
|
|
|
|
|
2016-06-17 18:12:30 +00:00
|
|
|
Get-ChildItem $PSScriptRoot/src -Directory | ? {
|
|
|
|
Get-ChildItem (Join-Path $_.FullName 'resources') -ErrorAction SilentlyContinue} | % {
|
|
|
|
$_. Name} | % {
|
|
|
|
|
|
|
|
$module = $_
|
|
|
|
Get-ChildItem "$PSScriptRoot/src/$module/resources" -Filter '*.resx' | % {
|
|
|
|
$className = $_.Name.Replace('.resx', '')
|
|
|
|
$xml = [xml](Get-Content -raw $_.FullName)
|
|
|
|
|
|
|
|
$fileName = $className
|
|
|
|
$genSource = Get-StronglyTypeCsFileForResx -xml $xml -ModuleName $module -ClassName $className
|
|
|
|
$outPath = "$PSScriptRoot/src/$module/gen/$fileName.cs"
|
|
|
|
Write-Verbose "ResGen for $outPath"
|
|
|
|
New-Item -Type Directory -ErrorAction SilentlyContinue (Split-Path $outPath) > $null
|
|
|
|
Set-Content -Encoding Ascii -Path $outPath -Value $genSource
|
|
|
|
}
|
2016-04-04 21:20:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-02 05:01:05 +00:00
|
|
|
|
2016-06-20 18:59:14 +00:00
|
|
|
function Find-Dotnet() {
|
|
|
|
$originalPath = $env:PATH
|
|
|
|
$dotnetPath = if ($IsWindows) {
|
|
|
|
"$env:LocalAppData\Microsoft\dotnet"
|
|
|
|
} else {
|
|
|
|
"$env:HOME/.dotnet"
|
|
|
|
}
|
|
|
|
|
|
|
|
if (-not (precheck 'dotnet' "Could not find 'dotnet', appending $dotnetPath to PATH.")) {
|
|
|
|
$env:PATH += [IO.Path]::PathSeparator + $dotnetPath
|
|
|
|
}
|
|
|
|
|
|
|
|
if (-not (precheck 'dotnet' "Still could not find 'dotnet', restoring PATH.")) {
|
|
|
|
$env:PATH = $originalPath
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-23 02:46:16 +00:00
|
|
|
function Start-XamlGen
|
2016-06-21 21:30:26 +00:00
|
|
|
{
|
|
|
|
[CmdletBinding()]
|
|
|
|
param(
|
|
|
|
[Parameter()]
|
|
|
|
[ValidateSet("Debug", "Release")]
|
|
|
|
[string]
|
|
|
|
$MSBuildConfiguration = "Release"
|
|
|
|
)
|
|
|
|
|
2016-06-21 23:54:57 +00:00
|
|
|
Use-MSBuild
|
2016-06-21 21:30:26 +00:00
|
|
|
Get-ChildItem -Path "$PSScriptRoot/src" -Directory | % {
|
|
|
|
|
|
|
|
$XamlDir = Join-Path -Path $_.FullName -ChildPath Xamls
|
|
|
|
if ((Test-Path -Path $XamlDir -PathType Container) -and
|
|
|
|
(@(Get-ChildItem -Path "$XamlDir\*.xaml").Count -gt 0))
|
|
|
|
{
|
|
|
|
$OutputDir = Join-Path -Path $env:TEMP -ChildPath "_Resolve_Xaml_"
|
|
|
|
Remove-Item -Path $OutputDir -Recurse -Force -ErrorAction SilentlyContinue
|
|
|
|
mkdir -Path $OutputDir -Force > $null
|
|
|
|
|
2016-06-24 22:12:15 +00:00
|
|
|
# we will get failures, but it's ok: we only need to copy *.g.cs files in the dotnet cli project.
|
|
|
|
$SourceDir = ConvertFrom-Xaml -Configuration $MSBuildConfiguration -OutputDir $OutputDir -XamlDir $XamlDir -IgnoreMsbuildFailure:$true
|
2016-06-21 21:30:26 +00:00
|
|
|
$DestinationDir = Join-Path -Path $_.FullName -ChildPath gen
|
|
|
|
|
2016-06-23 02:46:16 +00:00
|
|
|
New-Item -ItemType Directory $DestinationDir -ErrorAction SilentlyContinue > $null
|
2016-06-24 22:12:15 +00:00
|
|
|
$filesToCopy = Get-Item "$SourceDir\*.cs", "$SourceDir\*.g.resources"
|
|
|
|
if (-not $filesToCopy)
|
|
|
|
{
|
|
|
|
throw "No .cs or .g.resources files are generated for $XamlDir, something went wrong. Run 'Start-XamlGen -Verbose' for details."
|
|
|
|
}
|
|
|
|
|
|
|
|
$filesToCopy | % {
|
2016-06-23 02:46:16 +00:00
|
|
|
$sourcePath = $_.FullName
|
|
|
|
Write-Verbose "Copy generated xaml artifact: $sourcePath -> $DestinationDir"
|
|
|
|
Copy-Item -Path $sourcePath -Destination $DestinationDir
|
2016-06-21 21:30:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$Script:XamlProj = @"
|
|
|
|
<Project DefaultTargets="ResolveAssemblyReferences;MarkupCompilePass1;PrepareResources" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<PropertyGroup>
|
|
|
|
<Language>C#</Language>
|
|
|
|
<AssemblyName>Microsoft.PowerShell.Activities</AssemblyName>
|
|
|
|
<OutputType>library</OutputType>
|
|
|
|
<Configuration>{0}</Configuration>
|
|
|
|
<Platform>Any CPU</Platform>
|
|
|
|
<OutputPath>{1}</OutputPath>
|
|
|
|
<Do_CodeGenFromXaml>true</Do_CodeGenFromXaml>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<Import Project="`$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
|
|
|
<Import Project="`$(MSBuildBinPath)\Microsoft.WinFX.targets" Condition="'`$(TargetFrameworkVersion)' == 'v2.0' OR '`$(TargetFrameworkVersion)' == 'v3.0' OR '`$(TargetFrameworkVersion)' == 'v3.5'" />
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
{2}
|
2016-06-24 22:02:46 +00:00
|
|
|
<Reference Include="WindowsBase.dll">
|
2016-06-21 21:30:26 +00:00
|
|
|
<Private>False</Private>
|
|
|
|
</Reference>
|
2016-06-24 22:02:46 +00:00
|
|
|
<Reference Include="PresentationCore.dll">
|
2016-06-21 21:30:26 +00:00
|
|
|
<Private>False</Private>
|
|
|
|
</Reference>
|
2016-06-24 22:02:46 +00:00
|
|
|
<Reference Include="PresentationFramework.dll">
|
2016-06-21 21:30:26 +00:00
|
|
|
<Private>False</Private>
|
|
|
|
</Reference>
|
|
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|
|
"@
|
|
|
|
|
|
|
|
$Script:XamlProjPage = @'
|
|
|
|
<Page Include="{0}" />
|
|
|
|
|
|
|
|
'@
|
|
|
|
|
|
|
|
function script:ConvertFrom-Xaml {
|
|
|
|
[CmdletBinding()]
|
|
|
|
param(
|
|
|
|
[Parameter(Mandatory=$true)]
|
|
|
|
[string] $Configuration,
|
|
|
|
|
|
|
|
[Parameter(Mandatory=$true)]
|
|
|
|
[string] $OutputDir,
|
|
|
|
|
|
|
|
[Parameter(Mandatory=$true)]
|
2016-06-22 01:24:24 +00:00
|
|
|
[string] $XamlDir,
|
|
|
|
|
|
|
|
[switch] $IgnoreMsbuildFailure
|
2016-06-21 21:30:26 +00:00
|
|
|
)
|
|
|
|
|
2016-06-23 02:46:16 +00:00
|
|
|
log "ConvertFrom-Xaml for $XamlDir"
|
2016-06-22 01:24:24 +00:00
|
|
|
|
2016-06-21 21:30:26 +00:00
|
|
|
$Pages = ""
|
|
|
|
Get-ChildItem -Path "$XamlDir\*.xaml" | % {
|
|
|
|
$Page = $Script:XamlProjPage -f $_.FullName
|
|
|
|
$Pages += $Page
|
|
|
|
}
|
|
|
|
|
|
|
|
$XamlProjContent = $Script:XamlProj -f $Configuration, $OutputDir, $Pages
|
|
|
|
$XamlProjPath = Join-Path -Path $OutputDir -ChildPath xaml.proj
|
|
|
|
Set-Content -Path $XamlProjPath -Value $XamlProjContent -Encoding Ascii -NoNewline -Force
|
|
|
|
|
2016-06-24 22:03:38 +00:00
|
|
|
msbuild $XamlProjPath | Write-Verbose
|
2016-06-21 21:30:26 +00:00
|
|
|
|
|
|
|
if ($LASTEXITCODE -ne 0)
|
|
|
|
{
|
2016-06-22 01:24:24 +00:00
|
|
|
$message = "When processing $XamlDir 'msbuild $XamlProjPath > `$null' failed with exit code $LASTEXITCODE"
|
|
|
|
if ($IgnoreMsbuildFailure)
|
|
|
|
{
|
2016-06-24 22:12:15 +00:00
|
|
|
Write-Verbose $message
|
2016-06-22 01:24:24 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw $message
|
|
|
|
}
|
2016-06-21 21:30:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (Join-Path -Path $OutputDir -ChildPath "obj\Any CPU\$Configuration")
|
|
|
|
}
|
2016-06-20 18:59:14 +00:00
|
|
|
|
2016-06-21 23:54:57 +00:00
|
|
|
|
|
|
|
function script:Use-MSBuild {
|
2016-06-24 21:52:04 +00: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 02:46:16 +00:00
|
|
|
|
2016-06-24 21:52:04 +00:00
|
|
|
$msbuild = get-command msbuild -ErrorAction SilentlyContinue
|
2016-06-23 02:46:16 +00:00
|
|
|
if ($msbuild)
|
|
|
|
{
|
2016-06-24 21:52:04 +00:00
|
|
|
# all good, nothing to do
|
|
|
|
return
|
2016-06-21 23:54:57 +00:00
|
|
|
}
|
2016-06-23 02:46:16 +00:00
|
|
|
|
2016-06-24 21:52:04 +00:00
|
|
|
if (-not (Test-Path $frameworkMsBuildLocation))
|
2016-06-23 02:46:16 +00:00
|
|
|
{
|
2016-06-24 21:52:04 +00:00
|
|
|
throw "msbuild not found in '$frameworkMsBuildLocation'. Install Visual Studio 2015."
|
2016-06-23 02:46:16 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 21:52:04 +00:00
|
|
|
Set-Alias msbuild $frameworkMsBuildLocation -Scope Script
|
2016-06-21 23:54:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-04-02 05:01:05 +00:00
|
|
|
function script:log([string]$message) {
|
|
|
|
Write-Host -Foreground Green $message
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function script:precheck([string]$command, [string]$missedMessage) {
|
|
|
|
$c = Get-Command $command -ErrorAction SilentlyContinue
|
|
|
|
if (-not $c) {
|
|
|
|
Write-Warning $missedMessage
|
|
|
|
return $false
|
|
|
|
} else {
|
|
|
|
return $true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function script:Get-InvertedOrderedMap {
|
|
|
|
param(
|
|
|
|
$h
|
|
|
|
)
|
|
|
|
$res = [ordered]@{}
|
|
|
|
foreach ($q in $h.GetEnumerator()) {
|
|
|
|
if ($res.Contains($q.Value)) {
|
|
|
|
throw "Cannot invert hashtable: duplicated key $($q.Value)"
|
|
|
|
}
|
|
|
|
|
|
|
|
$res[$q.Value] = $q.Key
|
|
|
|
}
|
|
|
|
return $res
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
## this function is from Dave Wyatt's answer on
|
|
|
|
## http://stackoverflow.com/questions/22002748/hashtables-from-convertfrom-json-have-different-type-from-powershells-built-in-h
|
|
|
|
function script:Convert-PSObjectToHashtable {
|
|
|
|
param (
|
|
|
|
[Parameter(ValueFromPipeline)]
|
|
|
|
$InputObject
|
|
|
|
)
|
|
|
|
|
|
|
|
process {
|
|
|
|
if ($null -eq $InputObject) { return $null }
|
|
|
|
|
|
|
|
if ($InputObject -is [System.Collections.IEnumerable] -and $InputObject -isnot [string]) {
|
|
|
|
$collection = @(
|
|
|
|
foreach ($object in $InputObject) { Convert-PSObjectToHashtable $object }
|
|
|
|
)
|
|
|
|
|
|
|
|
Write-Output -NoEnumerate $collection
|
|
|
|
} elseif ($InputObject -is [psobject]) {
|
|
|
|
$hash = @{}
|
|
|
|
|
|
|
|
foreach ($property in $InputObject.PSObject.Properties)
|
|
|
|
{
|
|
|
|
$hash[$property.Name] = Convert-PSObjectToHashtable $property.Value
|
|
|
|
}
|
|
|
|
|
|
|
|
$hash
|
|
|
|
} else {
|
|
|
|
$InputObject
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-04 21:20:34 +00:00
|
|
|
|
2016-04-19 23:59:03 +00:00
|
|
|
# this function wraps native command Execution
|
|
|
|
# for more information, read https://mnaoumov.wordpress.com/2015/01/11/execution-of-external-commands-in-powershell-done-right/
|
|
|
|
function script:Start-NativeExecution([scriptblock]$sb)
|
|
|
|
{
|
|
|
|
$backupEAP = $script:ErrorActionPreference
|
|
|
|
$script:ErrorActionPreference = "Continue"
|
|
|
|
try
|
|
|
|
{
|
|
|
|
& $sb
|
|
|
|
# note, if $sb doens't have a native invokation, $LASTEXITCODE will
|
|
|
|
# point to the obsolete value
|
|
|
|
if ($LASTEXITCODE -ne 0)
|
|
|
|
{
|
2016-05-18 21:30:24 +00:00
|
|
|
throw "Execution of {$sb} failed with exit code $LASTEXITCODE"
|
2016-04-19 23:59:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
|
|
|
$script:ErrorActionPreference = $backupEAP
|
|
|
|
}
|
|
|
|
}
|
2016-04-04 21:20:34 +00:00
|
|
|
|
|
|
|
function script:Get-StronglyTypeCsFileForResx
|
|
|
|
{
|
2016-06-16 03:16:38 +00:00
|
|
|
param($xml, $ModuleName, $ClassName)
|
|
|
|
|
|
|
|
# Example
|
|
|
|
#
|
|
|
|
# $ClassName = Full.Name.Of.The.ClassFoo
|
|
|
|
# $shortClassName = ClassFoo
|
|
|
|
# $namespaceName = Full.Name.Of.The
|
|
|
|
|
|
|
|
$shortClassName = $ClassName
|
|
|
|
$namespaceName = $null
|
|
|
|
|
|
|
|
$lastIndexOfDot = $className.LastIndexOf(".")
|
|
|
|
if ($lastIndexOfDot -ne -1)
|
|
|
|
{
|
|
|
|
$namespaceName = $className.Substring(0, $lastIndexOfDot)
|
|
|
|
$shortClassName = $className.Substring($lastIndexOfDot + 1)
|
|
|
|
}
|
2016-06-14 23:48:20 +00:00
|
|
|
|
|
|
|
$banner = @'
|
2016-04-04 21:20:34 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// <auto-generated>
|
2016-05-18 20:58:59 +00:00
|
|
|
// This code was generated by a Start-ResGen funciton from build.psm1.
|
2016-04-04 21:20:34 +00:00
|
|
|
// To add or remove a member, edit your .ResX file then rerun Start-ResGen.
|
|
|
|
//
|
|
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
|
|
// the code is regenerated.
|
|
|
|
// </auto-generated>
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
2016-06-14 23:48:20 +00:00
|
|
|
{0}
|
|
|
|
'@
|
|
|
|
|
|
|
|
$namespace = @'
|
|
|
|
namespace {0} {{
|
|
|
|
{1}
|
|
|
|
}}
|
|
|
|
'@
|
|
|
|
|
|
|
|
$body = @'
|
2016-04-04 21:20:34 +00:00
|
|
|
using System;
|
|
|
|
using System.Reflection;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// A strongly-typed resource class, for looking up localized strings, etc.
|
|
|
|
/// </summary>
|
|
|
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
|
|
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
|
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
|
|
|
|
|
|
|
internal class {0} {{
|
2016-04-14 22:34:06 +00:00
|
|
|
|
2016-04-04 21:20:34 +00:00
|
|
|
private static global::System.Resources.ResourceManager resourceMan;
|
2016-04-14 22:34:06 +00:00
|
|
|
|
2016-04-04 21:20:34 +00:00
|
|
|
private static global::System.Globalization.CultureInfo resourceCulture;
|
2016-04-14 22:34:06 +00:00
|
|
|
|
2016-04-04 21:20:34 +00:00
|
|
|
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
|
|
|
internal {0}() {{
|
|
|
|
}}
|
2016-04-14 22:34:06 +00:00
|
|
|
|
2016-04-04 21:20:34 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Returns the cached ResourceManager instance used by this class.
|
|
|
|
/// </summary>
|
|
|
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
|
|
internal static global::System.Resources.ResourceManager ResourceManager {{
|
|
|
|
get {{
|
|
|
|
if (object.ReferenceEquals(resourceMan, null)) {{
|
2016-06-16 03:16:38 +00:00
|
|
|
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("{1}.resources.{3}", typeof({0}).GetTypeInfo().Assembly);
|
2016-04-04 21:20:34 +00:00
|
|
|
resourceMan = temp;
|
|
|
|
}}
|
|
|
|
return resourceMan;
|
|
|
|
}}
|
|
|
|
}}
|
2016-04-14 22:34:06 +00:00
|
|
|
|
2016-04-04 21:20:34 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Overrides the current thread's CurrentUICulture property for all
|
|
|
|
/// resource lookups using this strongly typed resource class.
|
|
|
|
/// </summary>
|
|
|
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
|
|
internal static global::System.Globalization.CultureInfo Culture {{
|
|
|
|
get {{
|
|
|
|
return resourceCulture;
|
|
|
|
}}
|
|
|
|
set {{
|
|
|
|
resourceCulture = value;
|
|
|
|
}}
|
|
|
|
}}
|
2016-04-14 22:34:06 +00:00
|
|
|
{2}
|
|
|
|
}}
|
|
|
|
'@
|
2016-04-04 21:20:34 +00:00
|
|
|
|
|
|
|
$entry = @'
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Looks up a localized string similar to {1}
|
|
|
|
/// </summary>
|
|
|
|
internal static string {0} {{
|
|
|
|
get {{
|
|
|
|
return ResourceManager.GetString("{0}", resourceCulture);
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
'@
|
|
|
|
$entries = $xml.root.data | % {
|
|
|
|
if ($_) {
|
|
|
|
$val = $_.value.Replace("`n", "`n ///")
|
|
|
|
$name = $_.name.Replace(' ', '_')
|
|
|
|
$entry -f $name,$val
|
|
|
|
}
|
|
|
|
} | Out-String
|
2016-06-14 23:48:20 +00:00
|
|
|
|
2016-06-16 03:16:38 +00:00
|
|
|
$bodyCode = $body -f $shortClassName,$ModuleName,$entries,$ClassName
|
2016-06-14 23:48:20 +00:00
|
|
|
|
2016-06-16 03:16:38 +00:00
|
|
|
if ($NamespaceName)
|
2016-06-14 23:48:20 +00:00
|
|
|
{
|
|
|
|
$bodyCode = $namespace -f $NamespaceName, $bodyCode
|
|
|
|
}
|
|
|
|
|
|
|
|
$resultCode = $banner -f $bodyCode
|
|
|
|
|
2016-06-14 19:18:30 +00:00
|
|
|
return $resultCode -replace "`r`n?|`n","`r`n"
|
2016-04-04 21:20:34 +00:00
|
|
|
}
|
|
|
|
|
2016-06-06 20:20:00 +00:00
|
|
|
function New-MSIPackage
|
2016-05-24 21:23:38 +00:00
|
|
|
{
|
|
|
|
[CmdletBinding()]
|
|
|
|
param (
|
|
|
|
|
|
|
|
# Name of the Product
|
|
|
|
[ValidateNotNullOrEmpty()]
|
|
|
|
[string] $ProductName = 'OpenPowerShell',
|
|
|
|
|
|
|
|
# Version of the Product
|
|
|
|
[Parameter(Mandatory = $true)]
|
|
|
|
[ValidateNotNullOrEmpty()]
|
|
|
|
[string] $ProductVersion,
|
|
|
|
|
|
|
|
# Product Guid needs to change for every version to support SxS install
|
|
|
|
[ValidateNotNullOrEmpty()]
|
|
|
|
[string] $ProductGuid = 'a5249933-73a1-4b10-8a4c-13c98bdc16fe',
|
|
|
|
|
|
|
|
# Source Path to the Product Files - required to package the contents into an MSI
|
|
|
|
[Parameter(Mandatory = $true)]
|
|
|
|
[ValidateNotNullOrEmpty()]
|
|
|
|
[string] $ProductSourcePath,
|
|
|
|
|
|
|
|
# File describing the MSI Package creation semantics
|
|
|
|
[ValidateNotNullOrEmpty()]
|
2016-06-06 20:20:00 +00:00
|
|
|
[string] $ProductWxsPath = (Join-Path $pwd '\assets\Product.wxs')
|
2016-05-24 21:23:38 +00:00
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
$wixToolsetBinPath = "${env:ProgramFiles(x86)}\WiX Toolset v3.10\bin"
|
|
|
|
|
|
|
|
Write-Verbose "Ensure Wix Toolset is present on the machine @ $wixToolsetBinPath"
|
|
|
|
if (-not (Test-Path $wixToolsetBinPath))
|
|
|
|
{
|
|
|
|
throw "Install Wix Toolset prior to running this script - https://wix.codeplex.com/downloads/get/1540240"
|
|
|
|
}
|
|
|
|
|
|
|
|
Write-Verbose "Initialize Wix executables - Heat.exe, Candle.exe, Light.exe"
|
|
|
|
$wixHeatExePath = Join-Path $wixToolsetBinPath "Heat.exe"
|
|
|
|
$wixCandleExePath = Join-Path $wixToolsetBinPath "Candle.exe"
|
|
|
|
$wixLightExePath = Join-Path $wixToolsetBinPath "Light.exe"
|
|
|
|
|
|
|
|
# Wix tooling does not like hyphen in the foldername
|
|
|
|
$ProductVersion = $ProductVersion.Replace('-', '_')
|
|
|
|
|
|
|
|
$productVersionWithName = $ProductName + "_" + $ProductVersion
|
|
|
|
Write-Verbose "Create MSI for Product $productVersionWithName"
|
|
|
|
|
|
|
|
[Environment]::SetEnvironmentVariable("ProductSourcePath", $ProductSourcePath, "Process")
|
|
|
|
[Environment]::SetEnvironmentVariable("ProductName", $ProductName, "Process")
|
|
|
|
[Environment]::SetEnvironmentVariable("ProductGuid", $ProductGuid, "Process")
|
|
|
|
[Environment]::SetEnvironmentVariable("ProductVersion", $ProductVersion, "Process")
|
|
|
|
[Environment]::SetEnvironmentVariable("ProductVersionWithName", $productVersionWithName, "Process")
|
|
|
|
|
|
|
|
$wixFragmentPath = (Join-path $env:Temp "Fragment.wxs")
|
|
|
|
$wixObjProductPath = (Join-path $env:Temp "Product.wixobj")
|
|
|
|
$wixObjFragmentPath = (Join-path $env:Temp "Fragment.wixobj")
|
|
|
|
|
|
|
|
$msiLocationPath = Join-Path $pwd "$productVersionWithName.msi"
|
2016-05-24 21:41:23 +00:00
|
|
|
Remove-Item -ErrorAction SilentlyContinue $msiLocationPath -Force
|
2016-05-24 21:23:38 +00:00
|
|
|
|
2016-05-24 22:02:24 +00:00
|
|
|
& $wixHeatExePath dir $ProductSourcePath -dr $productVersionWithName -cg $productVersionWithName -gg -sfrag -srd -scom -sreg -out $wixFragmentPath -var env.ProductSourcePath -v | Write-Verbose
|
|
|
|
& $wixCandleExePath "$ProductWxsPath" "$wixFragmentPath" -out (Join-Path "$env:Temp" "\\") -arch x64 -v | Write-Verbose
|
|
|
|
& $wixLightExePath -out "$productVersionWithName.msi" $wixObjProductPath $wixObjFragmentPath -ext WixUIExtension -v | Write-Verbose
|
2016-05-24 21:23:38 +00:00
|
|
|
|
2016-05-24 21:41:23 +00:00
|
|
|
Remove-Item -ErrorAction SilentlyContinue *.wixpdb -Force
|
2016-05-24 21:23:38 +00:00
|
|
|
|
2016-05-24 21:41:05 +00:00
|
|
|
Write-Verbose "You can find the MSI @ $msiLocationPath"
|
|
|
|
return $msiLocationPath
|
2016-05-24 21:23:38 +00:00
|
|
|
}
|
|
|
|
|
2016-06-02 17:31:02 +00:00
|
|
|
# Function to create an Appx package compatible with Windows 8.1 and above
|
|
|
|
function New-AppxPackage
|
|
|
|
{
|
|
|
|
[CmdletBinding()]
|
|
|
|
param (
|
|
|
|
|
|
|
|
# Name of the Package
|
|
|
|
[ValidateNotNullOrEmpty()]
|
|
|
|
[string] $PackageName = 'OpenPowerShell',
|
|
|
|
|
|
|
|
# Version of the Package
|
|
|
|
[Parameter(Mandatory = $true)]
|
|
|
|
[ValidateNotNullOrEmpty()]
|
|
|
|
[string] $PackageVersion,
|
|
|
|
|
|
|
|
# Source Path to the Binplaced Files
|
|
|
|
[Parameter(Mandatory = $true)]
|
|
|
|
[ValidateNotNullOrEmpty()]
|
|
|
|
[string] $SourcePath,
|
|
|
|
|
|
|
|
# Path to Assets folder containing Appx specific artifacts
|
|
|
|
[Parameter(Mandatory = $true)]
|
|
|
|
[ValidateNotNullOrEmpty()]
|
|
|
|
[string] $AssetsPath
|
|
|
|
)
|
|
|
|
|
2016-06-02 18:44:17 +00:00
|
|
|
Write-Verbose "Extract the version in the form of a.b.c.d for $PackageVersion"
|
2016-06-02 19:54:04 +00:00
|
|
|
$PackageVersionTokens = $PackageVersion.Split('-')
|
2016-06-02 17:31:02 +00:00
|
|
|
$PackageVersion = ([regex]::matches($PackageVersion, "\d+(\.\d+)+"))[0].value
|
2016-06-02 18:23:28 +00:00
|
|
|
|
|
|
|
# Need to add the last version field for makeappx
|
2016-06-02 19:54:04 +00:00
|
|
|
$PackageVersion = $PackageVersion + '.' + $PackageVersionTokens[1]
|
2016-06-02 17:31:02 +00:00
|
|
|
Write-Verbose "Package Version is $PackageVersion"
|
|
|
|
|
|
|
|
$win10sdkBinPath = "${env:ProgramFiles(x86)}\Windows Kits\10\bin\x64"
|
|
|
|
|
|
|
|
Write-Verbose "Ensure Win10 SDK is present on the machine @ $win10sdkBinPath"
|
|
|
|
if (-not (Test-Path $win10sdkBinPath))
|
|
|
|
{
|
|
|
|
throw "Install Win10 SDK prior to running this script - https://go.microsoft.com/fwlink/p/?LinkID=698771"
|
|
|
|
}
|
|
|
|
|
|
|
|
Write-Verbose "Ensure Source Path is valid - $SourcePath"
|
|
|
|
if (-not (Test-Path $SourcePath))
|
|
|
|
{
|
|
|
|
throw "Invalid SourcePath - $SourcePath"
|
|
|
|
}
|
|
|
|
|
|
|
|
Write-Verbose "Ensure Assets Path is valid - $AssetsPath"
|
|
|
|
if (-not (Test-Path $AssetsPath))
|
|
|
|
{
|
|
|
|
throw "Invalid AssetsPath - $AssetsPath"
|
|
|
|
}
|
|
|
|
|
|
|
|
Write-Verbose "Initialize MakeAppx executable path"
|
|
|
|
$makeappxExePath = Join-Path $win10sdkBinPath "MakeAppx.exe"
|
|
|
|
|
|
|
|
$appxManifest = @"
|
|
|
|
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities">
|
|
|
|
<Identity Name="Microsoft.OpenPowerShell" ProcessorArchitecture="x64" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" Version="#VERSION#" />
|
|
|
|
<Properties>
|
|
|
|
<DisplayName>OpenPowerShell</DisplayName>
|
|
|
|
<PublisherDisplayName>Microsoft Corporation</PublisherDisplayName>
|
|
|
|
<Logo>#LOGO#</Logo>
|
|
|
|
</Properties>
|
|
|
|
<Resources>
|
|
|
|
<Resource Language="en-us" />
|
|
|
|
</Resources>
|
|
|
|
<Dependencies>
|
|
|
|
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14257.0" MaxVersionTested="12.0.0.0" />
|
|
|
|
<TargetDeviceFamily Name="Windows.Server" MinVersion="10.0.14257.0" MaxVersionTested="12.0.0.0" />
|
|
|
|
</Dependencies>
|
|
|
|
<Capabilities>
|
|
|
|
<rescap:Capability Name="runFullTrust" />
|
|
|
|
</Capabilities>
|
|
|
|
<Applications>
|
|
|
|
<Application Id="OpenPowerShell" Executable="powershell.exe" EntryPoint="Windows.FullTrustApplication">
|
|
|
|
<uap:VisualElements DisplayName="OpenPowerShell" Description="OpenPowerShell Package" BackgroundColor="transparent" Square150x150Logo="#SQUARE150x150LOGO#" Square44x44Logo="#SQUARE44x44LOGO#">
|
|
|
|
</uap:VisualElements>
|
|
|
|
</Application>
|
|
|
|
</Applications>
|
|
|
|
</Package>
|
|
|
|
"@
|
|
|
|
|
|
|
|
$appxManifest = $appxManifest.Replace('#VERSION#', $PackageVersion)
|
|
|
|
$appxManifest = $appxManifest.Replace('#LOGO#', 'Assets\Powershell_256.png')
|
|
|
|
$appxManifest = $appxManifest.Replace('#SQUARE150x150LOGO#', 'Assets\Powershell_256.png')
|
|
|
|
$appxManifest = $appxManifest.Replace('#SQUARE44x44LOGO#', 'Assets\Powershell_48.png')
|
|
|
|
|
|
|
|
Write-Verbose "Place Appx Manifest in $SourcePath"
|
|
|
|
$appxManifest | Out-File "$SourcePath\AppxManifest.xml" -Force
|
|
|
|
|
|
|
|
$assetsInSourcePath = "$SourcePath" + '\Assets'
|
|
|
|
New-Item $assetsInSourcePath -type directory -Force | Out-Null
|
|
|
|
|
|
|
|
$assetsInSourcePath = Join-Path $SourcePath 'Assets'
|
|
|
|
|
|
|
|
Write-Verbose "Place AppxManifest dependencies such as images to $assetsInSourcePath"
|
|
|
|
Copy-Item "$AssetsPath\*.png" $assetsInSourcePath -Force
|
2016-06-02 18:23:28 +00:00
|
|
|
|
|
|
|
$appxPackageName = $PackageName + "_" + $PackageVersion
|
|
|
|
$appxPackagePath = "$pwd\$appxPackageName.appx"
|
2016-06-02 17:31:02 +00:00
|
|
|
Write-Verbose "Calling MakeAppx from $makeappxExePath to create the package @ $appxPackagePath"
|
|
|
|
& $makeappxExePath pack /o /v /d $SourcePath /p $appxPackagePath | Write-Verbose
|
|
|
|
|
|
|
|
Write-Verbose "Clean-up Appx artifacts and Assets from $SourcePath"
|
|
|
|
Remove-Item $assetsInSourcePath -Recurse -Force -ErrorAction SilentlyContinue
|
|
|
|
Remove-Item "$SourcePath\AppxManifest.xml" -Force -ErrorAction SilentlyContinue
|
|
|
|
|
|
|
|
return $appxPackagePath
|
|
|
|
}
|