2015-10-06 17:46:43 +00:00
#!/usr/bin/env bash
2015-11-16 19:21:57 +00:00
#
# Copyright (c) .NET Foundation and contributors. All rights reserved.
# Licensed under the MIT license. See LICENSE file in the project root for full license information.
#
2015-10-06 17:46:43 +00:00
2015-12-02 19:52:19 +00:00
set -e
2015-10-06 17:46:43 +00:00
SOURCE = " ${ BASH_SOURCE [0] } "
while [ -h " $SOURCE " ] ; do # resolve $SOURCE until the file is no longer a symlink
DIR = " $( cd -P " $( dirname " $SOURCE " ) " && pwd ) "
SOURCE = " $( readlink " $SOURCE " ) "
2015-12-28 19:47:21 +00:00
[ [ " $SOURCE " != /* ] ] && SOURCE = " $DIR / $SOURCE " # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
2015-10-06 17:46:43 +00:00
done
DIR = " $( cd -P " $( dirname " $SOURCE " ) " && pwd ) "
2015-12-29 10:34:10 +00:00
source " $DIR /../common/_common.sh "
2015-10-29 17:33:39 +00:00
2015-12-29 10:34:10 +00:00
cd $REPOROOT
2015-10-06 17:46:43 +00:00
2015-10-20 16:05:17 +00:00
[ -z " $DOTNET_BUILD_CONTAINER_TAG " ] && DOTNET_BUILD_CONTAINER_TAG = "dotnetcli-build"
2015-10-22 06:41:38 +00:00
[ -z " $DOTNET_BUILD_CONTAINER_NAME " ] && DOTNET_BUILD_CONTAINER_NAME = "dotnetcli-build-container"
2015-10-22 17:13:05 +00:00
[ -z " $DOCKER_HOST_SHARE_DIR " ] && DOCKER_HOST_SHARE_DIR = $( pwd )
2015-10-22 21:43:24 +00:00
[ -z " $BUILD_COMMAND " ] && BUILD_COMMAND = "/opt/code/build.sh"
2015-10-22 17:13:05 +00:00
2015-10-20 16:05:17 +00:00
# Build the docker container (will be fast if it is already built)
2015-11-11 01:30:01 +00:00
header "Building Docker Container"
2015-11-17 08:45:49 +00:00
docker build --build-arg USER_ID = $( id -u) -t $DOTNET_BUILD_CONTAINER_TAG scripts/docker/
2015-10-20 16:05:17 +00:00
# Run the build in the container
2015-11-11 01:30:01 +00:00
header "Launching build in Docker Container"
2015-10-29 17:33:39 +00:00
info " Using code from: $DOCKER_HOST_SHARE_DIR "
2015-10-21 22:21:14 +00:00
docker run -t --rm --sig-proxy= true \
2015-10-29 17:33:39 +00:00
--name $DOTNET_BUILD_CONTAINER_NAME \
2015-10-22 17:13:05 +00:00
-v $DOCKER_HOST_SHARE_DIR :/opt/code \
2015-11-05 22:00:44 +00:00
-e DOTNET_BUILD_VERSION \
2015-11-05 21:43:21 +00:00
-e SASTOKEN \
-e STORAGE_ACCOUNT \
-e STORAGE_CONTAINER \
-e CHANNEL \
2015-11-06 22:40:05 +00:00
-e CONNECTION_STRING \
2015-11-05 21:43:21 +00:00
-e REPO_ID \
-e REPO_USER \
-e REPO_PASS \
-e REPO_SERVER \
2015-10-22 22:12:49 +00:00
$DOTNET_BUILD_CONTAINER_TAG $BUILD_COMMAND $1