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