-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
430 additions
and
318 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,82 +1,97 @@ | ||
#!/usr/bin/env bash | ||
############################################################### | ||
# This is the Cake bootstrapper script that is responsible for | ||
# downloading Cake and all specified tools from NuGet. | ||
############################################################### | ||
########################################################################## | ||
# This is the Cake bootstrapper script for Linux and OS X. | ||
# This file was downloaded from https://github.com/cake-build/resources | ||
# Feel free to change this file to fit your needs. | ||
########################################################################## | ||
|
||
# Define directories. | ||
SCRIPT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) | ||
TOOLS_DIR=$SCRIPT_DIR/tools | ||
NUGET_EXE=$TOOLS_DIR/nuget.exe | ||
CAKE_EXE=$TOOLS_DIR/Cake/Cake.exe | ||
NUGET_URL=https://dist.nuget.org/win-x86-commandline/latest/nuget.exe | ||
CAKE_VERSION=0.32.1 | ||
CAKE_EXE=$TOOLS_DIR/Cake.$CAKE_VERSION/Cake.exe | ||
|
||
# Temporarily skip verification of addins. | ||
export CAKE_SETTINGS_SKIPVERIFICATION='true' | ||
|
||
# Define default arguments. | ||
SCRIPT="setup.cake" | ||
TARGET="Default" | ||
CONFIGURATION="Release" | ||
VERBOSITY="verbose" | ||
DRYRUN= | ||
SHOW_VERSION=false | ||
SCRIPT_ARGUMENTS=() | ||
|
||
# Parse arguments. | ||
for i in "$@"; do | ||
case $1 in | ||
-s|--script) SCRIPT="$2"; shift ;; | ||
-t|--target) TARGET="$2"; shift ;; | ||
-c|--configuration) CONFIGURATION="$2"; shift ;; | ||
-v|--verbosity) VERBOSITY="$2"; shift ;; | ||
-d|--dryrun) DRYRUN="-dryrun" ;; | ||
--version) SHOW_VERSION=true ;; | ||
--) shift; SCRIPT_ARGUMENTS+=("$@"); break ;; | ||
*) SCRIPT_ARGUMENTS+=("$1") ;; | ||
esac | ||
shift | ||
done | ||
|
||
# Make sure the tools folder exist. | ||
if [ ! -d $TOOLS_DIR ]; then | ||
mkdir $TOOLS_DIR | ||
if [ ! -d "$TOOLS_DIR" ]; then | ||
mkdir "$TOOLS_DIR" | ||
fi | ||
|
||
# Make sure that packages.config exist. | ||
if [ ! -f $TOOLS_DIR/packages.config ]; then | ||
echo "Downloading packages.config..." | ||
curl -Lsfo $TOOLS_DIR/packages.config http://cakebuild.net/bootstrapper/packages | ||
if [ $? -ne 0 ]; then | ||
echo "An error occured while downloading packages.config." | ||
exit 1 | ||
fi | ||
########################################################################### | ||
# INSTALL .NET CORE CLI | ||
########################################################################### | ||
|
||
echo "Installing .NET CLI..." | ||
if [ ! -d "$SCRIPT_DIR/.dotnet" ]; then | ||
mkdir "$SCRIPT_DIR/.dotnet" | ||
fi | ||
curl -Lsfo "$SCRIPT_DIR/.dotnet/dotnet-install.sh" https://dot.net/v1/dotnet-install.sh | ||
sudo bash "$SCRIPT_DIR/.dotnet/dotnet-install.sh" --version 2.1.400 --install-dir .dotnet --no-path | ||
export PATH="$SCRIPT_DIR/.dotnet":$PATH | ||
export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1 | ||
export DOTNET_CLI_TELEMETRY_OPTOUT=1 | ||
export DOTNET_SYSTEM_NET_HTTP_USESOCKETSHTTPHANDLER=0 | ||
"$SCRIPT_DIR/.dotnet/dotnet" --info | ||
|
||
########################################################################### | ||
# INSTALL NUGET | ||
########################################################################### | ||
|
||
# Download NuGet if it does not exist. | ||
if [ ! -f $NUGET_EXE ]; then | ||
if [ ! -f "$NUGET_EXE" ]; then | ||
echo "Downloading NuGet..." | ||
curl -Lsfo $NUGET_EXE https://dist.nuget.org/win-x86-commandline/latest/nuget.exe | ||
curl -Lsfo "$NUGET_EXE" $NUGET_URL | ||
if [ $? -ne 0 ]; then | ||
echo "An error occured while downloading nuget.exe." | ||
echo "An error occurred while downloading nuget.exe." | ||
exit 1 | ||
fi | ||
fi | ||
|
||
# Restore tools from NuGet. | ||
pushd $TOOLS_DIR >/dev/null | ||
mono $NUGET_EXE install -ExcludeVersion -PreRelease -Source https://www.myget.org/F/cake/api/v3/index.json | ||
if [ $? -ne 0 ]; then | ||
echo "Could not restore NuGet packages." | ||
exit 1 | ||
########################################################################### | ||
# INSTALL CAKE | ||
########################################################################### | ||
|
||
if [ ! -f "$CAKE_EXE" ]; then | ||
mono "$NUGET_EXE" install Cake -Version $CAKE_VERSION -OutputDirectory "$TOOLS_DIR" | ||
if [ $? -ne 0 ]; then | ||
echo "An error occurred while installing Cake." | ||
exit 1 | ||
fi | ||
fi | ||
popd >/dev/null | ||
|
||
# Make sure that Cake has been installed. | ||
if [ ! -f $CAKE_EXE ]; then | ||
if [ ! -f "$CAKE_EXE" ]; then | ||
echo "Could not find Cake.exe at '$CAKE_EXE'." | ||
exit 1 | ||
fi | ||
|
||
########################################################################### | ||
# RUN BUILD SCRIPT | ||
########################################################################### | ||
|
||
# Start Cake | ||
if $SHOW_VERSION; then | ||
exec mono $CAKE_EXE -version | ||
else | ||
exec mono $CAKE_EXE $SCRIPT -verbosity=$VERBOSITY -configuration=$CONFIGURATION -target=$TARGET $DRYRUN "${SCRIPT_ARGUMENTS[@]}" | ||
fi | ||
exec mono "$CAKE_EXE" setup.cake --verbosity=$VERBOSITY --configuration=$CONFIGURATION --target=$TARGET $DRYRUN "${SCRIPT_ARGUMENTS[@]}" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/Cake.Tfs.Tests/Authentication/AuthenticationProviderTests.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.