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-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-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",
|
|
|
|
"centos.7.1-x64",
|
|
|
|
"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,
|
|
|
|
|
|
|
|
[Parameter(ParameterSetName='FullCLR')]
|
|
|
|
[switch]$FullCLR,
|
|
|
|
|
|
|
|
[Parameter(ParameterSetName='FullCLR')]
|
2016-03-15 20:06:26 +00:00
|
|
|
[string]$cmakeGenerator = "Visual Studio 14 2015",
|
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-05-18 22:35:09 +00:00
|
|
|
git describe --dirty --abbrev=60 > "$psscriptroot/.version"
|
|
|
|
|
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-04-13 23:41:50 +00:00
|
|
|
if (-not $NoPath) {
|
|
|
|
Write-Verbose "Appending probable .NET CLI tool path"
|
|
|
|
if ($IsWindows) {
|
2016-05-13 23:49:39 +00:00
|
|
|
$env:Path += ";$env:LocalAppData\Microsoft\dotnet"
|
2016-04-13 23:41:50 +00:00
|
|
|
} elseif ($IsOSX) {
|
|
|
|
$env:PATH += ":/usr/local/share/dotnet"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
$precheck = precheck 'dotnet' "Build dependency 'dotnet' not found in PATH! 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-03-12 00:19:05 +00:00
|
|
|
# msbuild is needed to build powershell.exe
|
2016-03-18 18:50:52 +00:00
|
|
|
# msbuild is part of .NET Framework, we can try to get it from well-known location.
|
2016-04-19 23:10:09 +00:00
|
|
|
if (-not $NoPath -and -not (Get-Command -Name msbuild -ErrorAction Ignore)) {
|
2016-04-13 23:41:50 +00:00
|
|
|
Write-Verbose "Appending probable Visual C++ tools path"
|
2016-03-18 18:50:52 +00:00
|
|
|
$env:path += ";${env:SystemRoot}\Microsoft.Net\Framework\v4.0.30319"
|
|
|
|
}
|
|
|
|
|
|
|
|
$precheck = $precheck -and (precheck 'msbuild' 'msbuild not found. Install Visual Studio 2015.')
|
2016-04-10 00:59:13 +00:00
|
|
|
} elseif ($IsLinux -or $IsOSX) {
|
2016-04-01 21:42:40 +00:00
|
|
|
$InstallCommand = if ($IsLinux) {
|
|
|
|
'apt-get'
|
|
|
|
} elseif ($IsOSX) {
|
|
|
|
'brew'
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($Dependency in 'cmake', 'make', 'g++') {
|
|
|
|
$precheck = $precheck -and (precheck $Dependency "Build dependency '$Dependency' not found. Run '$InstallCommand install $Dependency'")
|
|
|
|
}
|
|
|
|
}
|
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-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-04-01 21:41:13 +00:00
|
|
|
if ($cmakeGenerator) {
|
2016-04-02 06:09:39 +00:00
|
|
|
cmake -G $cmakeGenerator .
|
2016-04-01 21:41:13 +00:00
|
|
|
} else {
|
2016-04-02 06:09:39 +00:00
|
|
|
cmake .
|
2016-03-12 00:19:05 +00:00
|
|
|
}
|
2016-04-02 06:09:39 +00:00
|
|
|
|
2016-04-19 23:59:03 +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-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",
|
|
|
|
"centos.7.1-x64",
|
|
|
|
"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-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(
|
|
|
|
[string]$Flags = '-EnableExit -OutputFile pester-tests.xml -OutputFormat NUnitXml',
|
|
|
|
[string]$Tests = "*",
|
|
|
|
[ValidateScript({ Test-Path -PathType Container $_})]
|
|
|
|
[string]$Directory = "$PSScriptRoot/test/powershell"
|
|
|
|
)
|
|
|
|
|
2016-05-11 21:11:53 +00:00
|
|
|
& (Get-PSOutput) -noprofile -c "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-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-04-02 05:01:37 +00:00
|
|
|
$Content = Split-Path -Parent (Get-PSOutput)
|
2016-04-02 03:45:32 +00:00
|
|
|
$Arguments = "--configuration", "Linux"
|
|
|
|
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)
|
|
|
|
Write-Host "Output is $Output"
|
2016-04-19 03:22:20 +00:00
|
|
|
|
2016-04-19 23:59:03 +00:00
|
|
|
Start-NativeExecution { dotnet build $Arguments }
|
2016-04-25 21:11:13 +00:00
|
|
|
Copy-Item -ErrorAction SilentlyContinue -Recurse -Path $Content/* -Include Modules,libpsl-native* -Destination $Output
|
2016-04-19 23:59:03 +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 {
|
|
|
|
[CmdletBinding()]param()
|
|
|
|
|
|
|
|
Write-Host "Installing Open PowerShell build dependencies"
|
|
|
|
|
|
|
|
if ($IsLinux) {
|
|
|
|
precheck 'curl' "Bootstrap dependency 'curl' not found in PATH, please install!" > $null
|
|
|
|
precheck 'apt-get' "Bootstrap dependency 'apt-get' not found in PATH, this only supports Ubuntu 14.04!" > $null
|
|
|
|
|
|
|
|
# Setup LLVM feed
|
|
|
|
curl -s http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -
|
|
|
|
echo "deb http://llvm.org/apt/trusty/ llvm-toolchain-trusty-3.6 main" | sudo tee /etc/apt/sources.list.d/llvm.list
|
|
|
|
sudo apt-get update -qq
|
|
|
|
|
|
|
|
# Install ours and .NET's dependencies
|
2016-04-13 22:36:15 +00:00
|
|
|
sudo apt-get install -y 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-04-13 22:11:38 +00:00
|
|
|
|
|
|
|
# Install .NET CLI packages
|
|
|
|
Remove-Item dotnet*.deb
|
|
|
|
|
|
|
|
wget https://dotnetcli.blob.core.windows.net/dotnet/beta/Installers/Latest/dotnet-host-ubuntu-x64.latest.deb
|
|
|
|
sudo dpkg -i dotnet-host-ubuntu-x64.latest.deb
|
|
|
|
|
|
|
|
wget https://dotnetcli.blob.core.windows.net/dotnet/beta/Installers/Latest/dotnet-sharedframework-ubuntu-x64.latest.deb
|
|
|
|
sudo dpkg -i dotnet-sharedframework-ubuntu-x64.latest.deb
|
|
|
|
|
|
|
|
wget https://dotnetcli.blob.core.windows.net/dotnet/beta/Installers/Latest/dotnet-sdk-ubuntu-x64.latest.deb
|
|
|
|
sudo dpkg -i dotnet-sdk-ubuntu-x64.latest.deb
|
|
|
|
|
|
|
|
} elseif ($IsOSX) {
|
|
|
|
precheck 'brew' "Bootstrap dependency 'brew' not found, must install Homebrew! See http://brew.sh/"
|
|
|
|
|
|
|
|
# Install ours and .NET's dependencies
|
|
|
|
brew install cmake wget openssl
|
|
|
|
|
|
|
|
# Install .NET CLI packages
|
|
|
|
Remove-Item dotnet*.pkg
|
|
|
|
wget https://dotnetcli.blob.core.windows.net/dotnet/beta/Installers/Latest/dotnet-dev-osx-x64.latest.pkg
|
|
|
|
sudo installer -pkg dotnet-dev-osx-x64.latest.pkg -target /
|
2016-04-13 23:41:50 +00:00
|
|
|
|
2016-04-13 22:11:38 +00:00
|
|
|
} elseif ($IsWindows -And -Not $IsCore) {
|
2016-04-20 22:21:55 +00:00
|
|
|
Remove-Item -ErrorAction SilentlyContinue -Recurse -Force ~\AppData\Local\Microsoft\dotnet
|
2016-04-13 22:11:38 +00:00
|
|
|
Invoke-WebRequest -Uri https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/install.ps1 -OutFile install.ps1
|
2016-05-06 20:57:19 +00:00
|
|
|
./install.ps1 -Version 1.0.0-rc2-002655
|
2016-04-13 23:41:50 +00:00
|
|
|
|
2016-04-13 22:11:38 +00:00
|
|
|
} else {
|
|
|
|
Write-Warning "Start-PSBootstrap cannot be run in Core PowerShell on Windows (need Invoke-WebRequest!)"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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-03-04 20:11:01 +00:00
|
|
|
if ($IsWindows) { throw "Building Windows packages is not yet supported!" }
|
2016-02-22 00:21:04 +00:00
|
|
|
|
2016-04-10 00:59:13 +00:00
|
|
|
if (-not (Get-Command "fpm" -ErrorAction SilentlyContinue)) {
|
2016-02-22 00:21:04 +00:00
|
|
|
throw "Build dependency 'fpm' not found in PATH! See: https://github.com/jordansissel/fpm"
|
|
|
|
}
|
|
|
|
|
2016-04-10 01:02:37 +00:00
|
|
|
$Source = Split-Path -Parent (Get-PSOutput)
|
|
|
|
if ((Split-Path -Leaf $Source) -ne "publish") {
|
2016-05-15 19:51:57 +00:00
|
|
|
throw "Please Start-PSBuild -Publish with the corresponding runtime for the package"
|
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-02-27 02:51:13 +00:00
|
|
|
$Type = if ($IsLinux) { "deb" } elseif ($IsOSX) { "osxpkg" }
|
|
|
|
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-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-24 00:21:00 +00:00
|
|
|
# Use Git tag if not given a version
|
2016-04-10 00:59:13 +00:00
|
|
|
if (-not $Version) {
|
2016-02-24 00:21:00 +00:00
|
|
|
$Version = (git --git-dir="$PSScriptRoot/.git" describe) -Replace '^v'
|
|
|
|
}
|
|
|
|
|
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-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
|
|
|
|
|
|
|
|
|
|
|
<#
|
|
|
|
.EXAMPLE Copy-SubmoduleFiles # copy files FROM submodule TO src/<project> folders
|
|
|
|
.EXAMPLE Copy-SubmoduleFiles -ToSubmodule # copy files FROM src/<project> folders TO submodule
|
|
|
|
#>
|
|
|
|
function Copy-SubmoduleFiles {
|
2016-04-01 21:41:13 +00:00
|
|
|
|
2016-03-22 23:00:20 +00:00
|
|
|
[CmdletBinding()]
|
|
|
|
param(
|
2016-03-23 23:57:59 +00:00
|
|
|
[string]$mappingFilePath = "$PSScriptRoot/mapping.json",
|
2016-03-22 23:00:20 +00:00
|
|
|
[switch]$ToSubmodule
|
|
|
|
)
|
|
|
|
|
2016-04-01 21:41:13 +00:00
|
|
|
|
2016-04-02 05:01:05 +00:00
|
|
|
if (-not (Test-Path $mappingFilePath)) {
|
2016-03-22 23:00:20 +00:00
|
|
|
throw "Mapping file not found in $mappingFilePath"
|
|
|
|
}
|
|
|
|
|
|
|
|
$m = cat -Raw $mappingFilePath | ConvertFrom-Json | Convert-PSObjectToHashtable
|
|
|
|
|
|
|
|
# mapping.json assumes the root folder
|
|
|
|
Push-Location $PSScriptRoot
|
2016-04-02 05:01:05 +00:00
|
|
|
try {
|
2016-03-22 23:00:20 +00:00
|
|
|
$m.GetEnumerator() | % {
|
|
|
|
|
2016-04-02 05:01:05 +00:00
|
|
|
if ($ToSubmodule) {
|
2016-03-22 23:00:20 +00:00
|
|
|
cp $_.Value $_.Key -Verbose:$Verbose
|
2016-04-02 05:01:05 +00:00
|
|
|
} else {
|
2016-03-22 23:00:20 +00:00
|
|
|
mkdir (Split-Path $_.Value) -ErrorAction SilentlyContinue > $null
|
2016-04-01 21:41:13 +00:00
|
|
|
cp $_.Key $_.Value -Verbose:$Verbose
|
2016-03-22 23:00:20 +00:00
|
|
|
}
|
|
|
|
}
|
2016-04-02 05:01:05 +00:00
|
|
|
} finally {
|
2016-03-22 23:00:20 +00:00
|
|
|
Pop-Location
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-02 05:01:05 +00:00
|
|
|
|
2016-03-22 23:00:20 +00:00
|
|
|
<#
|
2016-04-02 05:01:05 +00:00
|
|
|
.EXAMPLE Create-MappingFile # create mapping.json in the root folder from project.json files
|
2016-03-22 23:00:20 +00:00
|
|
|
#>
|
2016-04-02 05:01:05 +00:00
|
|
|
function New-MappingFile {
|
2016-03-22 23:00:20 +00:00
|
|
|
param(
|
2016-03-29 21:17:19 +00:00
|
|
|
[string]$mappingFilePath = "$PSScriptRoot/mapping.json",
|
|
|
|
[switch]$IgnoreCompileFiles,
|
2016-03-30 21:13:36 +00:00
|
|
|
[switch]$Ignoreresource
|
2016-03-22 23:00:20 +00:00
|
|
|
)
|
|
|
|
|
2016-04-02 05:01:05 +00:00
|
|
|
function Get-MappingPath([string]$project, [string]$path) {
|
|
|
|
if ($project -match 'TypeCatalogGen') {
|
2016-03-22 23:00:20 +00:00
|
|
|
return Split-Path $path -Leaf
|
|
|
|
}
|
2016-04-01 21:41:13 +00:00
|
|
|
|
2016-04-02 05:01:05 +00:00
|
|
|
if ($project -match 'Microsoft.Management.Infrastructure') {
|
2016-03-22 23:00:20 +00:00
|
|
|
return Split-Path $path -Leaf
|
|
|
|
}
|
|
|
|
|
|
|
|
return ($path -replace '../monad/monad/src/', '')
|
|
|
|
}
|
|
|
|
|
|
|
|
$mapping = [ordered]@{}
|
|
|
|
|
|
|
|
# assumes the root folder
|
|
|
|
Push-Location $PSScriptRoot
|
2016-04-02 05:01:05 +00:00
|
|
|
try {
|
2016-03-22 23:00:20 +00:00
|
|
|
$projects = ls .\src\ -Recurse -Depth 2 -Filter 'project.json'
|
|
|
|
$projects | % {
|
|
|
|
$project = Split-Path $_.FullName
|
|
|
|
$json = cat -Raw -Path $_.FullName | ConvertFrom-Json
|
2016-03-29 21:17:19 +00:00
|
|
|
if (-not $IgnoreCompileFiles) {
|
|
|
|
$json.compileFiles | % {
|
|
|
|
if ($_) {
|
2016-04-02 05:01:05 +00:00
|
|
|
if (-not $_.EndsWith('AssemblyInfo.cs')) {
|
2016-03-29 21:17:19 +00:00
|
|
|
$fullPath = Join-Path $project (Get-MappingPath -project $project -path $_)
|
|
|
|
$mapping[$_.Replace('../', 'src/')] = ($fullPath.Replace("$($pwd.Path)\",'')).Replace('\', '/')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-30 21:13:36 +00:00
|
|
|
if ((-not $Ignoreresource) -and ($json.resource)) {
|
2016-03-29 21:17:19 +00:00
|
|
|
$json.resource | % {
|
|
|
|
if ($_) {
|
|
|
|
ls $_.Replace('../', 'src/') | % {
|
2016-03-30 21:13:36 +00:00
|
|
|
$fullPath = Join-Path $project (Join-Path 'resources' $_.Name)
|
2016-03-29 21:17:19 +00:00
|
|
|
$mapping[$_.FullName.Replace("$($pwd.Path)\", '').Replace('\', '/')] = ($fullPath.Replace("$($pwd.Path)\",'')).Replace('\', '/')
|
|
|
|
}
|
2016-03-22 23:00:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-02 05:01:05 +00:00
|
|
|
} finally {
|
2016-03-22 23:00:20 +00:00
|
|
|
Pop-Location
|
|
|
|
}
|
|
|
|
|
|
|
|
Set-Content -Value ($mapping | ConvertTo-Json) -Path $mappingFilePath -Encoding Ascii
|
|
|
|
}
|
2016-03-23 23:57:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
<#
|
2016-04-01 21:41:13 +00:00
|
|
|
.EXAMPLE Send-GitDiffToSd -diffArg1 45555786714d656bd31cbce67dbccb89c433b9cb -diffArg2 45555786714d656bd31cbce67dbccb89c433b9cb~1 -pathToAdmin 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)]
|
|
|
|
[string]$pathToAdmin,
|
|
|
|
[string]$mappingFilePath = "$PSScriptRoot/mapping.json",
|
|
|
|
[switch]$WhatIf
|
|
|
|
)
|
|
|
|
|
|
|
|
$patchPath = Join-Path (get-command git).Source ..\..\bin\patch
|
|
|
|
$m = cat -Raw $mappingFilePath | ConvertFrom-Json | Convert-PSObjectToHashtable
|
|
|
|
$affectedFiles = git diff --name-only $diffArg1 $diffArg2
|
|
|
|
$rev = Get-InvertedOrderedMap $m
|
|
|
|
foreach ($file in $affectedFiles) {
|
2016-04-02 05:01:05 +00:00
|
|
|
if ($rev.Contains) {
|
2016-03-23 23:57:59 +00:00
|
|
|
$sdFilePath = Join-Path $pathToAdmin $rev[$file].Substring('src/monad/'.Length)
|
|
|
|
$diff = git diff $diffArg1 $diffArg2 -- $file
|
2016-04-02 05:01:05 +00:00
|
|
|
if ($diff) {
|
2016-03-23 23:57:59 +00:00
|
|
|
Write-Host -Foreground Green "Apply patch to $sdFilePath"
|
|
|
|
Set-Content -Value $diff -Path $env:TEMP\diff -Encoding Ascii
|
2016-04-02 05:01:05 +00:00
|
|
|
if ($WhatIf) {
|
2016-03-23 23:57:59 +00:00
|
|
|
Write-Host -Foreground Green "Patch content"
|
|
|
|
cat $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-03-23 23:57:59 +00:00
|
|
|
Write-Host -Foreground Green "No changes in $file"
|
|
|
|
}
|
2016-04-02 05:01:05 +00:00
|
|
|
} else {
|
2016-03-23 23:57:59 +00:00
|
|
|
Write-Host -Foreground Green "Ignore changes in $file, because there is no mapping for it"
|
|
|
|
}
|
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-04-04 21:20:34 +00:00
|
|
|
function Start-ResGen
|
|
|
|
{
|
|
|
|
@("Microsoft.PowerShell.Commands.Management",
|
|
|
|
"Microsoft.PowerShell.Commands.Utility",
|
|
|
|
"Microsoft.PowerShell.ConsoleHost",
|
|
|
|
"Microsoft.PowerShell.CoreCLR.Eventing",
|
|
|
|
"Microsoft.PowerShell.Security",
|
|
|
|
"System.Management.Automation") | % {
|
|
|
|
$module = $_
|
|
|
|
ls "$PSScriptRoot/src/$module/resources" | % {
|
|
|
|
$className = $_.Name.Replace('.resx', '')
|
|
|
|
$xml = [xml](cat -raw $_.FullName)
|
|
|
|
$genSource = Get-StronglyTypeCsFileForResx -xml $xml -ModuleName $module -ClassName $className
|
|
|
|
$outPath = "$PSScriptRoot/src/windows-build/gen/$module/$className.cs"
|
|
|
|
log "ResGen for $outPath"
|
2016-04-05 20:21:31 +00:00
|
|
|
mkdir -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
|
|
|
|
|
|
|
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
|
|
|
|
{
|
|
|
|
param($xml, $ModuleName, $ClassName)
|
|
|
|
$body = @'
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// <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>
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
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)) {{
|
|
|
|
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("{1}.resources.{0}", typeof({0}).GetTypeInfo().Assembly);
|
|
|
|
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
|
|
|
|
$body -f $ClassName,$ModuleName,$entries
|
|
|
|
}
|
|
|
|
|