Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Commit eab48e1

Browse files
committed
Unpin stage0.
1 parent 4b1c20c commit eab48e1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

run-build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ $env:VSTEST_TRACE_BUILD=1
8080
# install a stage0
8181
$dotnetInstallPath = Join-Path $RepoRoot "scripts\obtain\dotnet-install.ps1"
8282

83-
Write-Output "$dotnetInstallPath -Channel ""master"" -Version ""2.0.0-preview1-005867"" -InstallDir $env:DOTNET_INSTALL_DIR -Architecture ""$Architecture"""
84-
Invoke-Expression "$dotnetInstallPath -Channel ""master"" ""2.0.0-preview1-005867"" -InstallDir $env:DOTNET_INSTALL_DIR -Architecture ""$Architecture"""
83+
Write-Output "$dotnetInstallPath -Channel ""release/2.0.0"" -InstallDir $env:DOTNET_INSTALL_DIR -Architecture ""$Architecture"""
84+
Invoke-Expression "$dotnetInstallPath -Channel ""release/2.0.0"" -InstallDir $env:DOTNET_INSTALL_DIR -Architecture ""$Architecture"""
8585
if ($LastExitCode -ne 0)
8686
{
8787
Write-Output "The .NET CLI installation failed with exit code $LastExitCode"

run-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ export VSTEST_TRACE_BUILD=1
155155
DOTNET_MULTILEVEL_LOOKUP=0
156156

157157
# Install a stage 0
158-
(set -x ; "$REPOROOT/scripts/obtain/dotnet-install.sh" --channel "master" --version "2.0.0-preview1-005867" --install-dir "$DOTNET_INSTALL_DIR" --architecture "$ARCHITECTURE" $LINUX_PORTABLE_INSTALL_ARGS)
158+
(set -x ; "$REPOROOT/scripts/obtain/dotnet-install.sh" --channel "release/2.0.0" --install-dir "$DOTNET_INSTALL_DIR" --architecture "$ARCHITECTURE" $LINUX_PORTABLE_INSTALL_ARGS)
159159
EXIT_CODE=$?
160160
if [ $EXIT_CODE != 0 ]; then
161161
echo "run-build: Error: installing stage0 with exit code $EXIT_CODE." >&2

0 commit comments

Comments
 (0)