KoreBuild/build/KoreBuild.sh

125 строки
4.2 KiB
Bash
Executable File

#!/usr/bin/env bash
targets=""
repoFolder=""
while [[ $# > 0 ]]; do
case $1 in
-r)
shift
repoFolder=$1
;;
*)
targets+=" $1"
;;
esac
shift
done
if [ ! -e "$repoFolder" ]; then
printf "Usage: $filename -r [repoFolder] [ [targets] ]\n\n"
echo " -r [repo] The repository to build"
echo " [targets] A space separated list of targets to run"
exit 1
fi
echo "Building $repoFolder"
cd $repoFolder
scriptRoot="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Make the path relative to the repo root because Sake/Spark doesn't support full paths
koreBuildFolder="${scriptRoot/$repoFolder/}"
koreBuildFolder="${koreBuildFolder#/}"
if test `uname` = Darwin; then
versionFileName="cli.version.darwin"
else
versionFileName="cli.version.unix"
fi
versionFile="$koreBuildFolder/$versionFileName"
version=$(<$versionFile)
sharedRuntimeVersionFile="$koreBuildFolder/shared-runtime.version"
sharedRuntimeVersion=$(<$sharedRuntimeVersionFile)
install_shared_runtime() {
eval $invocation
local version=$1
local channel=$2
local sharedRuntimePath="$DOTNET_INSTALL_DIR/shared/Microsoft.NETCore.App/$version"
if [ ! -d "$sharedRuntimePath" ]; then
$koreBuildFolder/dotnet/dotnet-install.sh --shared-runtime --channel $channel --version $version
fi
}
[ -z "$KOREBUILD_DOTNET_CHANNEL" ] && KOREBUILD_DOTNET_CHANNEL=preview
[ -z "$KOREBUILD_DOTNET_VERSION" ] && KOREBUILD_DOTNET_VERSION=$version
if [ ! -z "$KOREBUILD_SKIP_RUNTIME_INSTALL" ]; then
echo "Skipping runtime installation because KOREBUILD_SKIP_RUNTIME_INSTALL is set"
# Add .NET installation directory to the path if it isn't yet included.
# Add to the _end_ in case preferred .NET CLI is not in the default location.
[[ ":$PATH:" != *":$DOTNET_INSTALL_DIR:"* ]] && export PATH="$PATH:$DOTNET_INSTALL_DIR"
else
# Need to set this variable because by default the install script
# requires sudo
[ -z "$DOTNET_INSTALL_DIR" ] && DOTNET_INSTALL_DIR=~/.dotnet
export DOTNET_INSTALL_DIR=$DOTNET_INSTALL_DIR
export KOREBUILD_FOLDER="$(dirname $koreBuildFolder)"
chmod +x $koreBuildFolder/dotnet/dotnet-install.sh
$koreBuildFolder/dotnet/dotnet-install.sh --channel $KOREBUILD_DOTNET_CHANNEL --version $KOREBUILD_DOTNET_VERSION
install_shared_runtime $sharedRuntimeVersion $KOREBUILD_DOTNET_CHANNEL
# Add .NET installation directory to the path if it isn't yet included.
[[ ":$PATH:" != *":$DOTNET_INSTALL_DIR:"* ]] && export PATH="$DOTNET_INSTALL_DIR:$PATH"
fi
# workaround for CLI issue: https://github.com/dotnet/cli/issues/2143
DOTNET_PATH=`which dotnet | head -n 1`
ROOT_PATH=`dirname $DOTNET_PATH`
FOUND=`find $ROOT_PATH/shared -name dotnet`
if [ ! -z "$FOUND" ]; then
echo $FOUND | xargs rm
fi
if [ "$(uname)" == "Darwin" ]; then
ulimit -n 2048
fi
sakeFolder=$koreBuildFolder/Sake
if [ ! -d $sakeFolder ]; then
toolsProject="$koreBuildFolder/project.json"
dotnet restore "$toolsProject" --packages $scriptRoot -v Minimal
# Rename the project after restore because we don't want it to be restore afterwards
mv "$toolsProject" "$toolsProject.norestore"
fi
netFrameworkFolder=$repoFolder/$koreBuildFolder/NETFrameworkReferenceAssemblies
netFrameworkContentDir=$netFrameworkFolder/4.5.1/content
if [ ! -d $netFrameworkFolder ]; then
xplatToolsProject="$koreBuildFolder/xplat.project.json"
dotnet restore "$xplatToolsProject" --packages $scriptRoot -v Minimal
# Rename the project after restore because we don't want it to be restore afterwards
mv $xplatToolsProject $xplatToolsProject.norestore
fi
export DOTNET_REFERENCE_ASSEMBLIES_PATH=$netFrameworkContentDir
nugetPath="$koreBuildFolder/nuget.exe"
if [ ! -f $nugetPath ]; then
nugetUrl="https://dist.nuget.org/win-x86-commandline/v3.5.0-beta2/NuGet.exe"
wget -O $nugetPath $nugetUrl 2>/dev/null || curl -o $nugetPath --location $nugetUrl 2>/dev/null
fi
makeFile="makefile.shade"
if [ ! -e $makeFile ]; then
makeFile="$koreBuildFolder/shade/makefile.shade"
fi
export KOREBUILD_FOLDER="$koreBuildFolder"
mono $sakeFolder/0.2.2/tools/Sake.exe -I $koreBuildFolder/shade -f $makeFile $targets