4b217db9c0
Decompose into self-contained granular components Provide reasonable defaults for cross cutting concerns, allowing for independent execution of steps Start unifying Windows/Bash architecture fix Bash CI scripts dockerbuild.sh _common.sh path Add missing restore-packages.sh Copy/paste issues Quote $SOURCE fix .gitignore PR Feedback Merge in @SridarMS's work to avoid redownloading DNX enabling build of dotnet-build merge in @SridharMS's CentOS changes Enable building FSC enable restoring specific subdirectories Fix dnx version check Add missed dependency Fix pathing to tests Match Linux build version to Windows, fixing linux tests as a side effect. workaround for coreclr#2215 fix pathing issue disable building in docker BUILD_IN_DOCKER was set, somehow... fix headers
36 lines
No EOL
1.1 KiB
PowerShell
36 lines
No EOL
1.1 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.
|
|
#
|
|
|
|
. $PSScriptRoot\..\common\_common.ps1
|
|
|
|
$DnxPackage = "dnx-coreclr-win-x64.1.0.0-rc1-update1.nupkg"
|
|
$DnxVersion = "1.0.0-rc1-16231"
|
|
|
|
$doInstall = $true
|
|
|
|
# check if the required dnx version is already downloaded
|
|
if ((Test-Path "$DnxRoot\dnx.exe")) {
|
|
$dnxOut = & "$DnxRoot\dnx.exe" --version
|
|
|
|
if ($dnxOut -Match $DnxVersion) {
|
|
Write-Host "Dnx version - $DnxVersion already downloaded."
|
|
|
|
$doInstall = $false
|
|
}
|
|
}
|
|
|
|
if ($doInstall)
|
|
{
|
|
# Download dnx to copy to stage2
|
|
Remove-Item -Recurse -Force -ErrorAction Ignore $DnxDir
|
|
mkdir -Force "$DnxDir" | Out-Null
|
|
|
|
Write-Host "Downloading Dnx version - $DnxVersion."
|
|
$DnxUrl="https://api.nuget.org/packages/$DnxPackage"
|
|
Invoke-WebRequest -UseBasicParsing "$DnxUrl" -OutFile "$DnxDir\dnx.zip"
|
|
|
|
Add-Type -Assembly System.IO.Compression.FileSystem | Out-Null
|
|
[System.IO.Compression.ZipFile]::ExtractToDirectory("$DnxDir\dnx.zip", "$DnxDir")
|
|
} |