Merge pull request #14004 from noahfalk/fix_tiered_dynamicmethod
[platform/upstream/coreclr.git] / init-tools.sh
1 #!/usr/bin/env bash
2
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
17
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"
21         exit 1
22     fi
23     OSName=$(uname -s)
24     case $OSName in
25         Darwin)
26             OS=OSX
27             __DOTNET_PKG=dotnet-dev-osx-x64
28             ulimit -n 2048
29             # Format x.y.z as single integer with three digits for each part
30             VERSION=`sw_vers -productVersion| sed -e 's/\./ /g' | xargs printf "%03d%03d%03d"`
31             if [ "$VERSION" -lt 010012000 ]; then
32                 echo error: macOS version `sw_vers -productVersion` is too old. 10.12 is needed as minimum.
33                 exit 1
34             fi
35             ;;
36
37         Linux)
38             __DOTNET_PKG=dotnet-dev-linux-x64
39             OS=Linux
40
41             if [ -e /etc/os-release ]; then
42                 source /etc/os-release
43                 if [[ $ID == "alpine" ]]; then
44                     # remove the last version digit
45                     VERSION_ID=${VERSION_ID%.*}
46                     __DOTNET_PKG=dotnet-dev-alpine.$VERSION_ID-x64
47                 fi
48
49             elif [ -e /etc/redhat-release ]; then
50                 redhatRelease=$(</etc/redhat-release)
51                 if [[ $redhatRelease == "CentOS release 6."* || $redhatRelease == "Red Hat Enterprise Linux Server release 6."* ]]; then
52                     __DOTNET_PKG=dotnet-dev-rhel.6-x64
53                 fi
54             fi
55
56             ;;
57
58         *)
59             echo "Unsupported OS '$OSName' detected. Downloading linux-x64 tools."
60             OS=Linux
61             __DOTNET_PKG=dotnet-dev-linux-x64
62             ;;
63   esac
64 fi
65
66 display_error_message()
67 {
68     echo "Please check the detailed log that follows." 1>&2
69     cat "$__init_tools_log" 1>&2
70 }
71
72 if [ ! -e $__INIT_TOOLS_DONE_MARKER ]; then
73     __PATCH_CLI_NUGET_FRAMEWORKS=0
74
75     if [ -e $__TOOLRUNTIME_DIR ]; then rm -rf -- $__TOOLRUNTIME_DIR; fi
76     echo "Running: $__scriptpath/init-tools.sh" > $__init_tools_log
77
78     if [ ! -e $__DOTNET_PATH ]; then
79
80         mkdir -p "$__DOTNET_PATH"
81
82         if [ -n "$DOTNET_TOOLSET_DIR" ] && [ -d "$DOTNET_TOOLSET_DIR/$__DOTNET_TOOLS_VERSION" ]; then
83             echo "Copying $DOTNET_TOOLSET_DIR/$__DOTNET_TOOLS_VERSION to $__DOTNET_PATH" >> $__init_tools_log
84             cp -r $DOTNET_TOOLSET_DIR/$__DOTNET_TOOLS_VERSION/* $__DOTNET_PATH
85         elif [ -n "$DOTNET_TOOL_DIR" ] && [ -d "$DOTNET_TOOL_DIR" ]; then
86             echo "Copying $DOTNET_TOOL_DIR to $__DOTNET_PATH" >> $__init_tools_log
87             cp -r $DOTNET_TOOL_DIR/* $__DOTNET_PATH
88         else
89             echo "Installing dotnet cli..."
90             __DOTNET_LOCATION="https://dotnetcli.azureedge.net/dotnet/Sdk/${__DOTNET_TOOLS_VERSION}/${__DOTNET_PKG}.${__DOTNET_TOOLS_VERSION}.tar.gz"
91             # curl has HTTPS CA trust-issues less often than wget, so lets try that first.
92             echo "Installing '${__DOTNET_LOCATION}' to '$__DOTNET_PATH/dotnet.tar'" >> $__init_tools_log
93             if command -v curl > /dev/null; then
94                 curl --retry 10 -sSL --create-dirs -o $__DOTNET_PATH/dotnet.tar ${__DOTNET_LOCATION}
95             else
96                 wget -q -O $__DOTNET_PATH/dotnet.tar ${__DOTNET_LOCATION}
97             fi
98             cd $__DOTNET_PATH
99             tar -xf $__DOTNET_PATH/dotnet.tar
100
101             cd $__scriptpath
102
103             __PATCH_CLI_NUGET_FRAMEWORKS=1
104         fi
105     fi
106
107
108     if [ -n "$BUILD_TOOLS_TOOLSET_DIR" ] && [ -d "$BUILD_TOOLS_TOOLSET_DIR/$__BUILD_TOOLS_PACKAGE_VERSION" ]; then
109         echo "Copying $BUILD_TOOLS_TOOLSET_DIR/$__BUILD_TOOLS_PACKAGE_VERSION to $__TOOLRUNTIME_DIR" >> $__init_tools_log
110         cp -r $BUILD_TOOLS_TOOLSET_DIR/$__BUILD_TOOLS_PACKAGE_VERSION/* $__TOOLRUNTIME_DIR
111     elif [ -n "$BUILD_TOOLS_TOOL_DIR" ] && [ -d "$BUILD_TOOLS_TOOL_DIR" ]; then
112         echo "Copying $BUILD_TOOLS_TOOL_DIR to $__TOOLRUNTIME_DIR" >> $__init_tools_log
113         cp -r $BUILD_TOOLS_TOOL_DIR/* $__TOOLRUNTIME_DIR
114     else
115         if [ ! -e $__BUILD_TOOLS_PATH ]; then
116             echo "Restoring BuildTools version $__BUILD_TOOLS_PACKAGE_VERSION..."
117             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
118             $__DOTNET_CMD restore "$__INIT_TOOLS_RESTORE_PROJECT" --no-cache --packages $__PACKAGES_DIR --source $__BUILDTOOLS_SOURCE /p:BuildToolsPackageVersion=$__BUILD_TOOLS_PACKAGE_VERSION >> $__init_tools_log
119             if [ ! -e "$__BUILD_TOOLS_PATH/init-tools.sh" ]; then
120                 echo "ERROR: Could not restore build tools correctly." 1>&2
121                 display_error_message
122             fi
123         fi
124
125         echo "Initializing BuildTools..."
126         echo "Running: $__BUILD_TOOLS_PATH/init-tools.sh $__scriptpath $__DOTNET_CMD $__TOOLRUNTIME_DIR" >> $__init_tools_log
127
128         # Executables restored with .NET Core 2.0 do not have executable permission flags. https://github.com/NuGet/Home/issues/4424
129         chmod +x $__BUILD_TOOLS_PATH/init-tools.sh
130         $__BUILD_TOOLS_PATH/init-tools.sh $__scriptpath $__DOTNET_CMD $__TOOLRUNTIME_DIR >> $__init_tools_log
131         if [ "$?" != "0" ]; then
132             echo "ERROR: An error occurred when trying to initialize the tools." 1>&2
133             display_error_message
134             exit 1
135         fi
136     fi
137
138     echo "Making all .sh files executable under Tools."
139     # Executables restored with .NET Core 2.0 do not have executable permission flags. https://github.com/NuGet/Home/issues/4424
140     ls $__scriptpath/Tools/*.sh | xargs chmod +x
141     ls $__scriptpath/Tools/scripts/docker/*.sh | xargs chmod +x
142
143     Tools/crossgen.sh $__scriptpath/Tools
144
145     mkdir -p $__INIT_TOOLS_DONE_MARKER_DIR
146     touch $__INIT_TOOLS_DONE_MARKER
147
148     echo "Done initializing tools."
149 else
150     echo "Tools are already initialized"
151 fi