Merge pull request #14529 from adityamandaleeka/r2r_exception_race
[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
24     __PKG_ARCH=x64
25
26     OSName=$(uname -s)
27     case $OSName in
28         Darwin)
29             OS=OSX
30             __PKG_RID=osx
31             ulimit -n 2048
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.
36                 exit 1
37             fi
38             ;;
39
40         Linux)
41             __PKG_RID=linux
42             OS=Linux
43
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
50                 fi
51
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
55                     __PKG_RID=rhel.6
56                 fi
57             fi
58
59             ;;
60
61         *)
62             echo "Unsupported OS '$OSName' detected. Downloading linux-$__PKG_ARCH tools."
63             OS=Linux
64             __PKG_RID=linux
65             ;;
66   esac
67   
68   __DOTNET_PKG=dotnet-sdk-${__DOTNET_TOOLS_VERSION}-$__PKG_RID-$__PKG_ARCH
69 fi
70
71 display_error_message()
72 {
73     echo "Please check the detailed log that follows." 1>&2
74     cat "$__init_tools_log" 1>&2
75 }
76
77 if [ ! -e $__INIT_TOOLS_DONE_MARKER ]; then
78     __PATCH_CLI_NUGET_FRAMEWORKS=0
79
80     if [ -e $__TOOLRUNTIME_DIR ]; then rm -rf -- $__TOOLRUNTIME_DIR; fi
81     echo "Running: $__scriptpath/init-tools.sh" > $__init_tools_log
82
83     if [ ! -e $__DOTNET_PATH ]; then
84
85         mkdir -p "$__DOTNET_PATH"
86
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
93         else
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}
100             else
101                 wget -q -O $__DOTNET_PATH/dotnet.tar ${__DOTNET_LOCATION}
102             fi
103             cd $__DOTNET_PATH
104             tar -xf $__DOTNET_PATH/dotnet.tar
105
106             cd $__scriptpath
107
108             __PATCH_CLI_NUGET_FRAMEWORKS=1
109         fi
110     fi
111
112
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
119     else
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 /p:ToolsDir=$__TOOLRUNTIME_DIR" >> $__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 /p:ToolsDir=$__TOOLRUNTIME_DIR >> $__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
127             fi
128         fi
129
130         echo "Initializing BuildTools..."
131         echo "Running: $__BUILD_TOOLS_PATH/init-tools.sh $__scriptpath $__DOTNET_CMD $__TOOLRUNTIME_DIR" >> $__init_tools_log
132
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
139             exit 1
140         fi
141     fi
142
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
147
148     Tools/crossgen.sh $__scriptpath/Tools
149
150     mkdir -p $__INIT_TOOLS_DONE_MARKER_DIR
151     touch $__INIT_TOOLS_DONE_MARKER
152
153     echo "Done initializing tools."
154 else
155     echo "Tools are already initialized"
156 fi