3 __scriptpath=$(cd "$(dirname "$0")"; pwd -P)
4 __init_tools_log=$__scriptpath/init-tools.log
5 __PACKAGES_DIR=$__scriptpath/packages
6 __TOOLRUNTIME_DIR=$__scriptpath/Tools
7 __DOTNET_PATH=$__TOOLRUNTIME_DIR/dotnetcli
8 __DOTNET_CMD=$__DOTNET_PATH/dotnet
9 if [ -z "$__BUILDTOOLS_SOURCE" ]; then __BUILDTOOLS_SOURCE=https://dotnet.myget.org/F/dotnet-buildtools/api/v3/index.json; fi
10 export __BUILDTOOLS_USE_CSPROJ=true
11 __BUILD_TOOLS_PACKAGE_VERSION=$(cat $__scriptpath/BuildToolsVersion.txt)
12 __DOTNET_TOOLS_VERSION=$(cat $__scriptpath/DotnetCLIVersion.txt)
13 __BUILD_TOOLS_PATH=$__PACKAGES_DIR/microsoft.dotnet.buildtools/$__BUILD_TOOLS_PACKAGE_VERSION/lib
14 __INIT_TOOLS_RESTORE_PROJECT=$__scriptpath/init-tools.msbuild
15 __INIT_TOOLS_DONE_MARKER_DIR=$__TOOLRUNTIME_DIR/$__BUILD_TOOLS_PACKAGE_VERSION
16 __INIT_TOOLS_DONE_MARKER=$__INIT_TOOLS_DONE_MARKER_DIR/done
18 if [ -z "$__DOTNET_PKG" ]; then
19 if [ "$(uname -m | grep "i[3456]86")" = "i686" ]; then
20 echo "Error: build not supported on 32 bit Unix"
32 # Format x.y.z as single integer with three digits for each part
33 VERSION=`sw_vers -productVersion| sed -e 's/\./ /g' | xargs printf "%03d%03d%03d"`
34 if [ "$VERSION" -lt 010012000 ]; then
35 echo error: macOS version `sw_vers -productVersion` is too old. 10.12 is needed as minimum.
44 if [ -e /etc/os-release ]; then
45 source /etc/os-release
46 if [[ $ID == "alpine" ]]; then
47 # remove the last version digit
48 VERSION_ID=${VERSION_ID%.*}
49 __PKG_RID=alpine.$VERSION_ID
52 elif [ -e /etc/redhat-release ]; then
53 redhatRelease=$(</etc/redhat-release)
54 if [[ $redhatRelease == "CentOS release 6."* || $redhatRelease == "Red Hat Enterprise Linux Server release 6."* ]]; then
62 echo "Unsupported OS '$OSName' detected. Downloading linux-$__PKG_ARCH tools."
68 __DOTNET_PKG=dotnet-sdk-${__DOTNET_TOOLS_VERSION}-$__PKG_RID-$__PKG_ARCH
71 display_error_message()
73 echo "Please check the detailed log that follows." 1>&2
74 cat "$__init_tools_log" 1>&2
77 if [ ! -e $__INIT_TOOLS_DONE_MARKER ]; then
78 __PATCH_CLI_NUGET_FRAMEWORKS=0
80 if [ -e $__TOOLRUNTIME_DIR ]; then rm -rf -- $__TOOLRUNTIME_DIR; fi
81 echo "Running: $__scriptpath/init-tools.sh" > $__init_tools_log
83 if [ ! -e $__DOTNET_PATH ]; then
85 mkdir -p "$__DOTNET_PATH"
87 if [ -n "$DOTNET_TOOLSET_DIR" ] && [ -d "$DOTNET_TOOLSET_DIR/$__DOTNET_TOOLS_VERSION" ]; then
88 echo "Copying $DOTNET_TOOLSET_DIR/$__DOTNET_TOOLS_VERSION to $__DOTNET_PATH" >> $__init_tools_log
89 cp -r $DOTNET_TOOLSET_DIR/$__DOTNET_TOOLS_VERSION/* $__DOTNET_PATH
90 elif [ -n "$DOTNET_TOOL_DIR" ] && [ -d "$DOTNET_TOOL_DIR" ]; then
91 echo "Copying $DOTNET_TOOL_DIR to $__DOTNET_PATH" >> $__init_tools_log
92 cp -r $DOTNET_TOOL_DIR/* $__DOTNET_PATH
94 echo "Installing dotnet cli..."
95 __DOTNET_LOCATION="https://dotnetcli.azureedge.net/dotnet/Sdk/${__DOTNET_TOOLS_VERSION}/${__DOTNET_PKG}.tar.gz"
96 # curl has HTTPS CA trust-issues less often than wget, so lets try that first.
97 echo "Installing '${__DOTNET_LOCATION}' to '$__DOTNET_PATH/dotnet.tar'" >> $__init_tools_log
98 if command -v curl > /dev/null; then
99 curl --retry 10 -sSL --create-dirs -o $__DOTNET_PATH/dotnet.tar ${__DOTNET_LOCATION}
101 wget -q -O $__DOTNET_PATH/dotnet.tar ${__DOTNET_LOCATION}
104 tar -xf $__DOTNET_PATH/dotnet.tar
108 __PATCH_CLI_NUGET_FRAMEWORKS=1
113 if [ -n "$BUILD_TOOLS_TOOLSET_DIR" ] && [ -d "$BUILD_TOOLS_TOOLSET_DIR/$__BUILD_TOOLS_PACKAGE_VERSION" ]; then
114 echo "Copying $BUILD_TOOLS_TOOLSET_DIR/$__BUILD_TOOLS_PACKAGE_VERSION to $__TOOLRUNTIME_DIR" >> $__init_tools_log
115 cp -r $BUILD_TOOLS_TOOLSET_DIR/$__BUILD_TOOLS_PACKAGE_VERSION/* $__TOOLRUNTIME_DIR
116 elif [ -n "$BUILD_TOOLS_TOOL_DIR" ] && [ -d "$BUILD_TOOLS_TOOL_DIR" ]; then
117 echo "Copying $BUILD_TOOLS_TOOL_DIR to $__TOOLRUNTIME_DIR" >> $__init_tools_log
118 cp -r $BUILD_TOOLS_TOOL_DIR/* $__TOOLRUNTIME_DIR
120 if [ ! -e $__BUILD_TOOLS_PATH ]; then
121 echo "Restoring BuildTools version $__BUILD_TOOLS_PACKAGE_VERSION..."
122 echo "Running: $__DOTNET_CMD restore \"$__INIT_TOOLS_RESTORE_PROJECT\" --no-cache --packages $__PACKAGES_DIR --source $__BUILDTOOLS_SOURCE /p:BuildToolsPackageVersion=$__BUILD_TOOLS_PACKAGE_VERSION" >> $__init_tools_log
123 $__DOTNET_CMD restore "$__INIT_TOOLS_RESTORE_PROJECT" --no-cache --packages $__PACKAGES_DIR --source $__BUILDTOOLS_SOURCE /p:BuildToolsPackageVersion=$__BUILD_TOOLS_PACKAGE_VERSION >> $__init_tools_log
124 if [ ! -e "$__BUILD_TOOLS_PATH/init-tools.sh" ]; then
125 echo "ERROR: Could not restore build tools correctly." 1>&2
126 display_error_message
130 echo "Initializing BuildTools..."
131 echo "Running: $__BUILD_TOOLS_PATH/init-tools.sh $__scriptpath $__DOTNET_CMD $__TOOLRUNTIME_DIR" >> $__init_tools_log
133 # Executables restored with .NET Core 2.0 do not have executable permission flags. https://github.com/NuGet/Home/issues/4424
134 chmod +x $__BUILD_TOOLS_PATH/init-tools.sh
135 $__BUILD_TOOLS_PATH/init-tools.sh $__scriptpath $__DOTNET_CMD $__TOOLRUNTIME_DIR >> $__init_tools_log
136 if [ "$?" != "0" ]; then
137 echo "ERROR: An error occurred when trying to initialize the tools." 1>&2
138 display_error_message
143 echo "Making all .sh files executable under Tools."
144 # Executables restored with .NET Core 2.0 do not have executable permission flags. https://github.com/NuGet/Home/issues/4424
145 ls $__scriptpath/Tools/*.sh | xargs chmod +x
146 ls $__scriptpath/Tools/scripts/docker/*.sh | xargs chmod +x
148 Tools/crossgen.sh $__scriptpath/Tools
150 mkdir -p $__INIT_TOOLS_DONE_MARKER_DIR
151 touch $__INIT_TOOLS_DONE_MARKER
153 echo "Done initializing tools."
155 echo "Tools are already initialized"