Update dependencies from https://github.com/dotnet/arcade build 20190514.13
- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19264.13
This commit is contained in:
parent
f578758912
commit
169e3b00fe
8 changed files with 57 additions and 14 deletions
|
@ -72,9 +72,9 @@
|
||||||
</Dependency>
|
</Dependency>
|
||||||
</ProductDependencies>
|
</ProductDependencies>
|
||||||
<ToolsetDependencies>
|
<ToolsetDependencies>
|
||||||
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.19263.3">
|
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.19264.13">
|
||||||
<Uri>https://github.com/dotnet/arcade</Uri>
|
<Uri>https://github.com/dotnet/arcade</Uri>
|
||||||
<Sha>e6712584bba6e2f0e35a3704793c459ff97c09af</Sha>
|
<Sha>670f6ee1a619a2a7c84cfdfe2a1c84fbe94e1c6b</Sha>
|
||||||
</Dependency>
|
</Dependency>
|
||||||
</ToolsetDependencies>
|
</ToolsetDependencies>
|
||||||
</Dependencies>
|
</Dependencies>
|
||||||
|
|
|
@ -53,6 +53,7 @@
|
||||||
<TargetStaticFeed Condition="'$(ArtifactsCategory.ToUpper())' == 'TOOLSET'">https://dotnetfeed.blob.core.windows.net/dotnet-toolset/index.json</TargetStaticFeed>
|
<TargetStaticFeed Condition="'$(ArtifactsCategory.ToUpper())' == 'TOOLSET'">https://dotnetfeed.blob.core.windows.net/dotnet-toolset/index.json</TargetStaticFeed>
|
||||||
<TargetStaticFeed Condition="'$(ArtifactsCategory.ToUpper())' == 'WINDOWSDESKTOP'">https://dotnetfeed.blob.core.windows.net/dotnet-windowsdesktop/index.json</TargetStaticFeed>
|
<TargetStaticFeed Condition="'$(ArtifactsCategory.ToUpper())' == 'WINDOWSDESKTOP'">https://dotnetfeed.blob.core.windows.net/dotnet-windowsdesktop/index.json</TargetStaticFeed>
|
||||||
<TargetStaticFeed Condition="'$(ArtifactsCategory.ToUpper())' == 'NUGETCLIENT'">https://dotnetfeed.blob.core.windows.net/nuget-nugetclient/index.json</TargetStaticFeed>
|
<TargetStaticFeed Condition="'$(ArtifactsCategory.ToUpper())' == 'NUGETCLIENT'">https://dotnetfeed.blob.core.windows.net/nuget-nugetclient/index.json</TargetStaticFeed>
|
||||||
|
<TargetStaticFeed Condition="'$(ArtifactsCategory.ToUpper())' == 'ASPNETENTITYFRAMEWORK6'">https://dotnetfeed.blob.core.windows.net/aspnet-entityframework6/index.json</TargetStaticFeed>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<Error
|
<Error
|
||||||
|
|
11
eng/common/cross/arm64/sources.list.buster
Normal file
11
eng/common/cross/arm64/sources.list.buster
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
deb http://deb.debian.org/debian buster main
|
||||||
|
deb-src http://deb.debian.org/debian buster main
|
||||||
|
|
||||||
|
deb http://deb.debian.org/debian-security/ buster/updates main
|
||||||
|
deb-src http://deb.debian.org/debian-security/ buster/updates main
|
||||||
|
|
||||||
|
deb http://deb.debian.org/debian buster-updates main
|
||||||
|
deb-src http://deb.debian.org/debian buster-updates main
|
||||||
|
|
||||||
|
deb http://deb.debian.org/debian buster-backports main contrib non-free
|
||||||
|
deb-src http://deb.debian.org/debian buster-backports main contrib non-free
|
12
eng/common/cross/arm64/sources.list.stretch
Normal file
12
eng/common/cross/arm64/sources.list.stretch
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
deb http://deb.debian.org/debian stretch main
|
||||||
|
deb-src http://deb.debian.org/debian stretch main
|
||||||
|
|
||||||
|
deb http://deb.debian.org/debian-security/ stretch/updates main
|
||||||
|
deb-src http://deb.debian.org/debian-security/ stretch/updates main
|
||||||
|
|
||||||
|
deb http://deb.debian.org/debian stretch-updates main
|
||||||
|
deb-src http://deb.debian.org/debian stretch-updates main
|
||||||
|
|
||||||
|
deb http://deb.debian.org/debian stretch-backports main contrib non-free
|
||||||
|
deb-src http://deb.debian.org/debian stretch-backports main contrib non-free
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
usage()
|
usage()
|
||||||
{
|
{
|
||||||
echo "Usage: $0 [BuildArch] [LinuxCodeName] [lldbx.y] [--skipunmount] --rootfs <directory>]"
|
echo "Usage: $0 [BuildArch] [LinuxCodeName] [lldbx.y] [--skipunmount] --rootfsdir <directory>]"
|
||||||
echo "BuildArch can be: arm(default), armel, arm64, x86"
|
echo "BuildArch can be: arm(default), armel, arm64, x86"
|
||||||
echo "LinuxCodeName - optional, Code name for Linux, can be: trusty, xenial(default), zesty, bionic, alpine. If BuildArch is armel, LinuxCodeName is jessie(default) or tizen."
|
echo "LinuxCodeName - optional, Code name for Linux, can be: trusty, xenial(default), zesty, bionic, alpine. If BuildArch is armel, LinuxCodeName is jessie(default) or tizen."
|
||||||
echo "lldbx.y - optional, LLDB version, can be: lldb3.9(default), lldb4.0, lldb5.0, lldb6.0 no-lldb. Ignored for alpine"
|
echo "lldbx.y - optional, LLDB version, can be: lldb3.9(default), lldb4.0, lldb5.0, lldb6.0 no-lldb. Ignored for alpine"
|
||||||
|
@ -113,12 +113,12 @@ while :; do
|
||||||
__LinuxCodeName=trusty
|
__LinuxCodeName=trusty
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
xenial) # Ubunry 16.04
|
xenial) # Ubuntu 16.04
|
||||||
if [ "$__LinuxCodeName" != "jessie" ]; then
|
if [ "$__LinuxCodeName" != "jessie" ]; then
|
||||||
__LinuxCodeName=xenial
|
__LinuxCodeName=xenial
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
zesty) # Ununtu 17.04
|
zesty) # Ubuntu 17.04
|
||||||
if [ "$__LinuxCodeName" != "jessie" ]; then
|
if [ "$__LinuxCodeName" != "jessie" ]; then
|
||||||
__LinuxCodeName=zesty
|
__LinuxCodeName=zesty
|
||||||
fi
|
fi
|
||||||
|
@ -132,7 +132,16 @@ while :; do
|
||||||
__LinuxCodeName=jessie
|
__LinuxCodeName=jessie
|
||||||
__UbuntuRepo="http://ftp.debian.org/debian/"
|
__UbuntuRepo="http://ftp.debian.org/debian/"
|
||||||
;;
|
;;
|
||||||
# TBD Stretch -> Debian 9, Buster -> Debian 10
|
stretch) # Debian 9
|
||||||
|
__LinuxCodeName=stretch
|
||||||
|
__UbuntuRepo="http://ftp.debian.org/debian/"
|
||||||
|
__LLDB_Package="liblldb-6.0-dev"
|
||||||
|
;;
|
||||||
|
buster) # Debian 10
|
||||||
|
__LinuxCodeName=buster
|
||||||
|
__UbuntuRepo="http://ftp.debian.org/debian/"
|
||||||
|
__LLDB_Package="liblldb-6.0-dev"
|
||||||
|
;;
|
||||||
tizen)
|
tizen)
|
||||||
if [ "$__BuildArch" != "armel" ]; then
|
if [ "$__BuildArch" != "armel" ]; then
|
||||||
echo "Tizen is available only for armel."
|
echo "Tizen is available only for armel."
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
param (
|
param (
|
||||||
$darcVersion = $null
|
$darcVersion = $null,
|
||||||
|
$versionEndpoint = "https://maestro-prod.westus2.cloudapp.azure.com/api/assets/darc-version?api-version=2019-01-16"
|
||||||
)
|
)
|
||||||
|
|
||||||
$verbosity = "m"
|
$verbosity = "m"
|
||||||
|
@ -16,10 +17,10 @@ function InstallDarcCli ($darcVersion) {
|
||||||
Invoke-Expression "& `"$dotnet`" tool uninstall $darcCliPackageName -g"
|
Invoke-Expression "& `"$dotnet`" tool uninstall $darcCliPackageName -g"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Until we can anonymously query the BAR API for the latest arcade-services
|
# If the user didn't explicitly specify the darc version,
|
||||||
# build applied to the PROD channel, this is hardcoded.
|
# query the Maestro API for the correct version of darc to install.
|
||||||
if (-not $darcVersion) {
|
if (-not $darcVersion) {
|
||||||
$darcVersion = '1.1.0-beta.19258.3'
|
$darcVersion = $(Invoke-WebRequest -Uri $versionEndpoint -UseBasicParsing).Content
|
||||||
}
|
}
|
||||||
|
|
||||||
$arcadeServicesSource = 'https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json'
|
$arcadeServicesSource = 'https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json'
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
source="${BASH_SOURCE[0]}"
|
source="${BASH_SOURCE[0]}"
|
||||||
darcVersion="1.1.0-beta.19258.3"
|
darcVersion=''
|
||||||
|
versionEndpoint="https://maestro-prod.westus2.cloudapp.azure.com/api/assets/darc-version?api-version=2019-01-16"
|
||||||
|
|
||||||
while [[ $# > 0 ]]; do
|
while [[ $# > 0 ]]; do
|
||||||
opt="$(echo "$1" | awk '{print tolower($0)}')"
|
opt="$(echo "$1" | awk '{print tolower($0)}')"
|
||||||
|
@ -10,6 +11,10 @@ while [[ $# > 0 ]]; do
|
||||||
darcVersion=$2
|
darcVersion=$2
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
|
--versionendpoint)
|
||||||
|
versionEndpoint=$2
|
||||||
|
shift
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
echo "Invalid argument: $1"
|
echo "Invalid argument: $1"
|
||||||
usage
|
usage
|
||||||
|
@ -33,6 +38,10 @@ verbosity=m
|
||||||
|
|
||||||
. "$scriptroot/tools.sh"
|
. "$scriptroot/tools.sh"
|
||||||
|
|
||||||
|
if [ -z "$darcVersion" ]; then
|
||||||
|
darcVersion=$(curl -X GET "$versionEndpoint" -H "accept: text/plain")
|
||||||
|
fi
|
||||||
|
|
||||||
function InstallDarcCli {
|
function InstallDarcCli {
|
||||||
local darc_cli_package_name="microsoft.dotnet.darc"
|
local darc_cli_package_name="microsoft.dotnet.darc"
|
||||||
|
|
||||||
|
@ -47,7 +56,7 @@ function InstallDarcCli {
|
||||||
|
|
||||||
local arcadeServicesSource="https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json"
|
local arcadeServicesSource="https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json"
|
||||||
|
|
||||||
echo "Installing Darc CLI version $toolset_version..."
|
echo "Installing Darc CLI version $darcVersion..."
|
||||||
echo "You may need to restart your command shell if this is the first dotnet tool you have installed."
|
echo "You may need to restart your command shell if this is the first dotnet tool you have installed."
|
||||||
echo $($dotnet_root/dotnet tool install $darc_cli_package_name --version $darcVersion --add-source "$arcadeServicesSource" -v $verbosity -g)
|
echo $($dotnet_root/dotnet tool install $darc_cli_package_name --version $darcVersion --add-source "$arcadeServicesSource" -v $verbosity -g)
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"tools": {
|
"tools": {
|
||||||
"dotnet": "3.0.100-preview4-011223"
|
"dotnet": "3.0.100-preview5-011568"
|
||||||
},
|
},
|
||||||
"msbuild-sdks": {
|
"msbuild-sdks": {
|
||||||
"Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19263.3"
|
"Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19264.13"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue