86 lines
2.9 KiB
PowerShell
86 lines
2.9 KiB
PowerShell
#
|
|
# Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
# Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
#
|
|
|
|
param(
|
|
[string]$Configuration="Debug",
|
|
[string]$Architecture="x64",
|
|
[string[]]$Targets=@("Default"),
|
|
[switch]$NoPackage,
|
|
[switch]$RunInstallerTestsInDocker,
|
|
[switch]$Help)
|
|
|
|
if($Help)
|
|
{
|
|
Write-Host "Usage: .\build.cmd [-Configuration <CONFIGURATION>] [-NoPackage] [-Help] [-Targets <TARGETS...>]"
|
|
Write-Host ""
|
|
Write-Host "Options:"
|
|
Write-Host " -Configuration <CONFIGURATION> Build the specified Configuration (Debug or Release, default: Debug)"
|
|
Write-Host " -Architecture <ARCHITECTURE> Build the specified architecture (x64 or x86 (supported only on Windows), default: x64)"
|
|
Write-Host " -Targets <TARGETS...> Comma separated build targets to run (Init, Compile, Publish, etc.; Default is a full build and publish)"
|
|
Write-Host " -NoPackage Skip packaging targets"
|
|
Write-Host " -RunInstallerTestsInDocker Runs the .msi installer tests in a Docker container. Requires Windows 2016 TP4 or higher"
|
|
Write-Host " -Help Display this help message"
|
|
exit 0
|
|
}
|
|
|
|
$env:CONFIGURATION = $Configuration;
|
|
|
|
if($NoPackage)
|
|
{
|
|
$env:DOTNET_BUILD_SKIP_PACKAGING=1
|
|
}
|
|
else
|
|
{
|
|
$env:DOTNET_BUILD_SKIP_PACKAGING=0
|
|
}
|
|
|
|
if ($RunInstallerTestsInDocker)
|
|
{
|
|
$env:RunInstallerTestsInDocker=1
|
|
}
|
|
|
|
# Load Branch Info
|
|
cat "$PSScriptRoot\..\branchinfo.txt" | ForEach-Object {
|
|
if(!$_.StartsWith("#") -and ![String]::IsNullOrWhiteSpace($_)) {
|
|
$splat = $_.Split([char[]]@("="), 2)
|
|
Set-Content "env:\$($splat[0])" -Value $splat[1]
|
|
}
|
|
}
|
|
|
|
# Use a repo-local install directory (but not the artifacts directory because that gets cleaned a lot
|
|
if (!$env:DOTNET_INSTALL_DIR)
|
|
{
|
|
$env:DOTNET_INSTALL_DIR="$PSScriptRoot\..\.dotnet_stage0\Windows\$Architecture"
|
|
}
|
|
|
|
if (!(Test-Path $env:DOTNET_INSTALL_DIR))
|
|
{
|
|
mkdir $env:DOTNET_INSTALL_DIR | Out-Null
|
|
}
|
|
|
|
# Install a stage 0
|
|
Write-Host "Installing .NET Core CLI Stage 0 from beta channel"
|
|
& "$PSScriptRoot\obtain\dotnet-install.ps1" -Channel $env:CHANNEL -Architecture $Architecture -Verbose
|
|
|
|
# Put the stage0 on the path
|
|
$env:PATH = "$env:DOTNET_INSTALL_DIR;$env:PATH"
|
|
|
|
# Restore the build scripts
|
|
Write-Host "Restoring Build Script projects..."
|
|
pushd $PSScriptRoot
|
|
dotnet restore --infer-runtimes
|
|
if($LASTEXITCODE -ne 0) { throw "Failed to restore" }
|
|
popd
|
|
|
|
# Publish the builder
|
|
Write-Host "Compiling Build Scripts..."
|
|
dotnet publish "$PSScriptRoot\dotnet-cli-build" -o "$PSScriptRoot/dotnet-cli-build/bin" --framework netstandardapp1.5
|
|
if($LASTEXITCODE -ne 0) { throw "Failed to compile build scripts" }
|
|
|
|
# Run the builder
|
|
Write-Host "Invoking Build Scripts..."
|
|
Write-Host " Configuration: $env:CONFIGURATION"
|
|
& "$PSScriptRoot\dotnet-cli-build\bin\dotnet-cli-build.exe" @Targets
|
|
if($LASTEXITCODE -ne 0) { throw "Build failed" }
|