2016-02-26 02:46:30 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
targets=""
|
2016-02-25 21:24:25 +03:00
|
|
|
repoFolder=""
|
2016-02-26 02:46:30 +03:00
|
|
|
while [[ $# > 0 ]]; do
|
|
|
|
case $1 in
|
2016-02-25 21:24:25 +03:00
|
|
|
-r)
|
2016-02-26 02:46:30 +03:00
|
|
|
shift
|
2016-02-25 21:24:25 +03:00
|
|
|
repoFolder=$1
|
2016-02-26 02:46:30 +03:00
|
|
|
;;
|
|
|
|
*)
|
2017-02-06 20:24:40 +03:00
|
|
|
if [ -z "$targets" ]; then
|
|
|
|
targets="/t:$1"
|
|
|
|
else
|
|
|
|
targets+=";$1"
|
|
|
|
fi
|
2016-02-26 02:46:30 +03:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
2016-02-25 21:24:25 +03:00
|
|
|
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"
|
2016-02-26 02:46:30 +03:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2016-02-25 21:24:25 +03:00
|
|
|
echo "Building $repoFolder"
|
|
|
|
cd $repoFolder
|
2016-02-26 02:46:30 +03:00
|
|
|
|
2016-03-29 02:18:27 +03:00
|
|
|
scriptRoot="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
|
2016-02-25 21:24:25 +03:00
|
|
|
# Make the path relative to the repo root because Sake/Spark doesn't support full paths
|
2016-03-29 02:18:27 +03:00
|
|
|
koreBuildFolder="${scriptRoot/$repoFolder/}"
|
2016-02-25 21:24:25 +03:00
|
|
|
koreBuildFolder="${koreBuildFolder#/}"
|
2016-02-26 02:46:30 +03:00
|
|
|
|
2016-12-13 00:05:37 +03:00
|
|
|
versionFile="$koreBuildFolder/cli.version"
|
2016-03-07 21:37:38 +03:00
|
|
|
version=$(<$versionFile)
|
2016-12-29 21:14:11 +03:00
|
|
|
sharedRuntimeVersionFile="$koreBuildFolder/shared-runtime.version"
|
2016-12-30 03:38:48 +03:00
|
|
|
sharedRuntimeVersion=$(<$sharedRuntimeVersionFile)
|
2016-03-04 01:16:50 +03:00
|
|
|
|
2016-11-28 20:41:15 +03:00
|
|
|
[ -z "$KOREBUILD_DOTNET_CHANNEL" ] && KOREBUILD_DOTNET_CHANNEL=rel-1.0.0
|
2016-03-04 01:24:02 +03:00
|
|
|
[ -z "$KOREBUILD_DOTNET_VERSION" ] && KOREBUILD_DOTNET_VERSION=$version
|
2016-02-26 02:46:30 +03:00
|
|
|
|
2016-12-01 04:17:13 +03:00
|
|
|
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
|
|
|
|
}
|
2016-02-26 02:46:30 +03:00
|
|
|
|
|
|
|
if [ ! -z "$KOREBUILD_SKIP_RUNTIME_INSTALL" ]; then
|
|
|
|
echo "Skipping runtime installation because KOREBUILD_SKIP_RUNTIME_INSTALL is set"
|
2016-03-04 02:30:06 +03:00
|
|
|
|
|
|
|
# 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.
|
2016-04-03 04:20:32 +03:00
|
|
|
[[ ":$PATH:" != *":$DOTNET_INSTALL_DIR:"* ]] && export PATH="$PATH:$DOTNET_INSTALL_DIR"
|
2016-02-26 02:46:30 +03:00
|
|
|
else
|
|
|
|
# Need to set this variable because by default the install script
|
|
|
|
# requires sudo
|
2016-11-08 21:30:03 +03:00
|
|
|
[ -z "$DOTNET_INSTALL_DIR" ] && DOTNET_INSTALL_DIR=~/.dotnet
|
|
|
|
export DOTNET_INSTALL_DIR=$DOTNET_INSTALL_DIR
|
2016-02-25 21:24:25 +03:00
|
|
|
export KOREBUILD_FOLDER="$(dirname $koreBuildFolder)"
|
2016-05-31 20:02:29 +03:00
|
|
|
chmod +x $koreBuildFolder/dotnet/dotnet-install.sh
|
2016-03-28 20:52:47 +03:00
|
|
|
|
2016-11-03 01:24:07 +03:00
|
|
|
# Install the version of dotnet-cli used to compile
|
2016-12-13 00:05:37 +03:00
|
|
|
$koreBuildFolder/dotnet/dotnet-install.sh --channel $KOREBUILD_DOTNET_CHANNEL --version $KOREBUILD_DOTNET_VERSION
|
2016-12-13 04:36:43 +03:00
|
|
|
install_shared_runtime '1.1.0' 'release/1.1.0'
|
2016-12-29 21:14:11 +03:00
|
|
|
install_shared_runtime $sharedRuntimeVersion 'master'
|
2016-12-01 04:17:13 +03:00
|
|
|
if [ ! -z "$KOREBUILD_DOTNET_SHARED_RUNTIME_VERSION" ]; then
|
|
|
|
channel="$KOREBUILD_DOTNET_SHARED_RUNTIME_CHANNEL"
|
|
|
|
[ -z "$channel" ] && channel="master"
|
|
|
|
install_shared_runtime $KOREBUILD_DOTNET_SHARED_RUNTIME_VERSION $channel
|
2016-10-01 03:25:02 +03:00
|
|
|
fi
|
2016-03-04 02:30:06 +03:00
|
|
|
|
|
|
|
# Add .NET installation directory to the path if it isn't yet included.
|
2016-04-03 04:20:32 +03:00
|
|
|
[[ ":$PATH:" != *":$DOTNET_INSTALL_DIR:"* ]] && export PATH="$DOTNET_INSTALL_DIR:$PATH"
|
2016-02-26 02:46:30 +03:00
|
|
|
fi
|
|
|
|
|
2016-04-03 04:20:32 +03:00
|
|
|
|
|
|
|
# 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
|
2016-04-01 19:12:15 +03:00
|
|
|
fi
|
|
|
|
|
2016-02-27 03:44:52 +03:00
|
|
|
if [ "$(uname)" == "Darwin" ]; then
|
|
|
|
ulimit -n 2048
|
|
|
|
fi
|
|
|
|
|
2017-02-03 04:53:30 +03:00
|
|
|
netfxversion='4.6.1'
|
2016-12-13 00:05:37 +03:00
|
|
|
netFrameworkFolder=$repoFolder/$koreBuildFolder/netframeworkreferenceassemblies
|
|
|
|
netFrameworkContentDir=$netFrameworkFolder/$netfxversion/content
|
|
|
|
sakeFolder=$koreBuildFolder/sake
|
2016-02-25 21:24:25 +03:00
|
|
|
if [ ! -d $sakeFolder ]; then
|
2016-12-13 00:05:37 +03:00
|
|
|
toolsProject="$koreBuildFolder/tools.proj"
|
|
|
|
dotnet restore "$toolsProject" --packages $scriptRoot -v Minimal "/p:NetFxVersion=$netfxversion"
|
2016-02-28 23:10:28 +03:00
|
|
|
# Rename the project after restore because we don't want it to be restore afterwards
|
|
|
|
mv "$toolsProject" "$toolsProject.norestore"
|
2016-02-25 21:24:25 +03:00
|
|
|
fi
|
|
|
|
|
2016-11-28 21:08:47 +03:00
|
|
|
export ReferenceAssemblyRoot=$netFrameworkContentDir
|
2016-11-17 03:22:50 +03:00
|
|
|
|
2016-03-04 00:09:25 +03:00
|
|
|
nugetPath="$koreBuildFolder/nuget.exe"
|
|
|
|
if [ ! -f $nugetPath ]; then
|
2016-07-13 20:57:06 +03:00
|
|
|
nugetUrl="https://dist.nuget.org/win-x86-commandline/v3.5.0-beta2/NuGet.exe"
|
2016-03-04 00:09:25 +03:00
|
|
|
wget -O $nugetPath $nugetUrl 2>/dev/null || curl -o $nugetPath --location $nugetUrl 2>/dev/null
|
|
|
|
fi
|
|
|
|
|
2017-02-06 20:24:40 +03:00
|
|
|
export KOREBUILD_FOLDER="$koreBuildFolder"
|
|
|
|
|
|
|
|
|
|
|
|
makeFileProj="$koreBuildFolder/targets/makefile.proj"
|
|
|
|
msbuildArtifactsDir="$repoFolder/artifacts/msbuild"
|
|
|
|
msbuildResponseFile="$msbuildArtifactsDir/msbuild.rsp"
|
|
|
|
msbuildLogFile="$msbuildArtifactsDir/msbuild.log"
|
|
|
|
|
|
|
|
if [ ! -f $msbuildArtifactsDir ]; then
|
|
|
|
mkdir -p $msbuildArtifactsDir
|
2016-02-25 21:24:25 +03:00
|
|
|
fi
|
|
|
|
|
2017-02-06 20:24:40 +03:00
|
|
|
cat > $msbuildResponseFile <<ENDMSBUILDARGS
|
|
|
|
/nologo
|
|
|
|
/m
|
|
|
|
/detailedsummary
|
|
|
|
"$makeFileProj"
|
|
|
|
/p:KoreBuildDirectory="$koreBuildFolder/"
|
|
|
|
/p:RepositoryRoot="$repoFolder/"
|
|
|
|
/fl
|
|
|
|
-flp:LogFile="$msbuildLogFile";Verbosity=diagnostic;Encoding=UTF-8
|
|
|
|
$targets
|
|
|
|
ENDMSBUILDARGS
|
|
|
|
|
|
|
|
dotnet msbuild @"$msbuildResponseFile"
|