2016-02-02 18:04:50 +00:00
#!/usr/bin/env bash
#
# 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.
#
set -e
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 " ) "
[ [ " $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
done
DIR = " $( cd -P " $( dirname " $SOURCE " ) " && pwd ) "
cd " $DIR /.. "
INTERACTIVE = "-i"
while [ [ $# > 0 ] ] ; do
key = $1
case $key in
--non-interactive)
INTERACTIVE =
; ;
-i| --image)
DOCKER_IMAGENAME = $2
shift
; ;
-d| --dockerfile)
DOCKERFILE = $2
shift
; ;
-h| -?| --help)
echo " Usage: $0 [-d|--dockerfile <Dockerfile>] [-i|--image <ImageName>] <Command> "
echo ""
echo "Options:"
echo " <Dockerfile> The path to the Dockerfile to use to create the build container"
2018-11-08 01:56:31 +00:00
echo " <ImageName> The name of an existing Dockerfile folder under eng/docker to use as the Dockerfile"
2019-09-10 19:33:20 +00:00
echo " <Command> The command to run once inside the container (repo root is mapped to DOCKER_HOST_SHARE_DIR; defaults to nothing, which runs the default shell)"
2016-02-02 18:04:50 +00:00
exit 0
; ;
*)
break # the first non-switch we get ends parsing
; ;
esac
shift
done
if [ -z " $DOCKERFILE " ] ; then
if [ -z " $DOCKER_IMAGENAME " ] ; then
if [ " $( uname) " = = "Darwin" ] ; then
echo "Defaulting to 'ubuntu' image for Darwin"
2018-11-08 01:56:31 +00:00
export DOCKERFILE = eng/docker/ubuntu
2016-02-02 18:04:50 +00:00
elif [ " $( cat /etc/*-release | grep -cim1 ubuntu) " -eq 1 ] ; then
2016-05-26 19:48:16 +00:00
echo "Detected current OS as Ubuntu, determining ubuntu version to use..."
if [ " $( cat /etc/*-release | grep -cim1 16.04) " -eq 1 ] ; then
echo "using 'ubuntu.16.04' image"
2018-11-08 01:56:31 +00:00
export DOCKERFILE = eng/docker/ubuntu.16.04
2016-05-26 19:48:16 +00:00
else
echo "using 'ubuntu' image"
2018-11-08 01:56:31 +00:00
export DOCKERFILE = eng/docker/ubuntu
2016-05-26 19:48:16 +00:00
fi
2016-02-02 18:04:50 +00:00
elif [ " $( cat /etc/*-release | grep -cim1 centos) " -eq 1 ] ; then
echo "Detected current OS as CentOS, using 'centos' image"
2018-11-08 01:56:31 +00:00
export DOCKERFILE = eng/docker/centos
2017-06-11 22:27:48 +00:00
elif [ " $( cat /etc/*-release | grep -cim1 rhel) " -eq 1 ] ; then
echo "Detected current OS as rhel, using 'rhel' image"
2018-11-08 01:56:31 +00:00
export DOCKERFILE = eng/docker/rhel
2016-04-12 14:41:33 +00:00
elif [ " $( cat /etc/*-release | grep -cim1 debian) " -eq 1 ] ; then
echo "Detected current OS as Debian, using 'debian' image"
2018-11-08 01:56:31 +00:00
export DOCKERFILE = eng/docker/debian
2016-05-27 06:16:18 +00:00
elif [ " $( cat /etc/*-release | grep -cim1 fedora) " -eq 1 ] ; then
echo "Detected current OS as Fedora, determining fedora version to use..."
if [ " $( cat /etc/*-release | grep -cim1 23) " -eq 1 ] ; then
echo "using 'fedora.23' image"
2018-11-08 01:56:31 +00:00
export DOCKERFILE = eng/docker/fedora.23
2016-05-27 06:16:18 +00:00
fi
2016-02-02 18:04:50 +00:00
else
echo "Unknown Linux Distro. Using 'ubuntu' image"
2018-11-08 01:56:31 +00:00
export DOCKERFILE = eng/docker/ubuntu
2016-02-02 18:04:50 +00:00
fi
else
echo " Using requested image: $DOCKER_IMAGENAME "
2018-11-08 01:56:31 +00:00
export DOCKERFILE = " eng/docker/ $DOCKER_IMAGENAME "
2016-02-02 18:04:50 +00:00
fi
fi
[ -z " $DOTNET_BUILD_CONTAINER_TAG " ] && DOTNET_BUILD_CONTAINER_TAG = "dotnetcli-build"
[ -z " $DOTNET_BUILD_CONTAINER_NAME " ] && DOTNET_BUILD_CONTAINER_NAME = "dotnetcli-build-container"
[ -z " $DOCKER_HOST_SHARE_DIR " ] && DOCKER_HOST_SHARE_DIR = $( pwd )
2016-02-16 20:46:43 +00:00
# Make container names CI-specific if we're running in CI
# Jenkins
[ ! -z " $BUILD_TAG " ] && DOTNET_BUILD_CONTAINER_NAME = " $BUILD_TAG "
# VSO
[ ! -z " $BUILD_BUILDID " ] && DOTNET_BUILD_CONTAINER_NAME = " $BUILD_BUILDID "
2020-03-30 18:56:19 +00:00
function retry {
local max_count = $1
shift
local count = 0
until " $@ " ; do
exit = $?
wait = $(( 2 * * $count ))
count = $(( $count + 1 ))
if [ [ ${ count } -lt ${ max_count } ] ] ; then
echo " Retry $count / $max_count returned $exit , wait $wait seconds... "
sleep ${ wait }
else
echo " Retry $count / $max_count returned $exit . "
return ${ exit }
fi
done
return 0
}
2016-02-02 18:04:50 +00:00
# Build the docker container (will be fast if it is already built)
2020-03-30 18:56:19 +00:00
# with retry since docker pull has high failure rate
2016-02-02 18:04:50 +00:00
echo " Building Docker Container using Dockerfile: $DOCKERFILE "
2020-03-30 18:56:19 +00:00
retry 10 docker build --build-arg WORK_DIR = $DOCKER_HOST_SHARE_DIR --build-arg USER_ID = $( id -u) -t $DOTNET_BUILD_CONTAINER_TAG $DOCKERFILE 2>& 1
2016-02-02 18:04:50 +00:00
# Run the build in the container
echo "Launching build in Docker Container"
echo " Running command: $BUILD_COMMAND "
echo " Using code from: $DOCKER_HOST_SHARE_DIR "
[ -z " $INTERACTIVE " ] || echo "Running Interactive"
2017-07-26 17:34:50 +00:00
# Note: passwords/keys should not be passed in the environment
2016-02-02 18:04:50 +00:00
docker run $INTERACTIVE -t --rm --sig-proxy= true \
--name $DOTNET_BUILD_CONTAINER_NAME \
2019-09-10 19:33:20 +00:00
-v $DOCKER_HOST_SHARE_DIR :$DOCKER_HOST_SHARE_DIR \
2016-02-02 18:04:50 +00:00
-e CHANNEL \
-e DOTNET_BUILD_SKIP_CROSSGEN \
2016-03-10 01:14:53 +00:00
-e PUBLISH_TO_AZURE_BLOB \
2016-05-24 14:45:17 +00:00
-e NUGET_FEED_URL \
-e NUGET_API_KEY \
2016-10-12 19:25:06 +00:00
-e ARTIFACT_STORAGE_ACCOUNT \
-e ARTIFACT_STORAGE_CONTAINER \
-e CHECKSUM_STORAGE_ACCOUNT \
-e CHECKSUM_STORAGE_CONTAINER \
2018-03-13 15:19:15 +00:00
-e BLOBFEED_STORAGE_CONTAINER \
2017-01-11 09:49:22 +00:00
-e CLIBUILD_SKIP_TESTS \
2017-02-13 20:56:10 +00:00
-e COMMITCOUNT \
-e DROPSUFFIX \
-e RELEASESUFFIX \
2017-04-25 20:59:52 +00:00
-e COREFXAZURECONTAINER \
-e AZUREACCOUNTNAME \
-e RELEASETOOLSGITURL \
-e CORESETUPBLOBROOTURL \
2018-01-17 16:37:33 +00:00
-e PB_ASSETROOTURL \
-e PB_PACKAGEVERSIONPROPSURL \
-e PB_PUBLISHBLOBFEEDURL \
2019-01-25 00:23:26 +00:00
-e _PUBLISHBLOBFEEDURL \
2019-01-25 00:13:25 +00:00
-e _ASSETROOTURL \
-e _PACKAGEVERSIONPROPSURL \
2018-02-14 16:04:45 +00:00
-e EXTERNALRESTORESOURCES \
2019-01-25 00:13:25 +00:00
-e BUILD_REPOSITORY_URI \
2020-09-04 15:22:25 +00:00
-e BUILD_REPOSITORY_NAME \
2019-01-25 00:13:25 +00:00
-e BUILD_SOURCEBRANCH \
-e BUILD_BUILDNUMBER \
2020-07-16 17:19:51 +00:00
-e BUILD_BUILDID \
2019-01-25 00:18:45 +00:00
-e BUILD_SOURCEVERSION \
2019-10-01 20:22:33 +00:00
-e SYSTEM_TEAMPROJECT \
2020-10-14 21:55:38 +00:00
-e POSTBUILDSIGN \
2020-07-16 17:19:51 +00:00
-e SYSTEM_DEFINITIONID \
-e SYSTEM_TEAMFOUNDATIONCOLLECTIONURI \
2019-01-28 18:32:29 +00:00
-e AGENT_JOBNAME \
-e AGENT_OS \
2019-10-01 20:22:33 +00:00
-e VSS_NUGET_URI_PREFIXES \
-e VSS_NUGET_ACCESSTOKEN \
-e DOTNET_SYSTEM_NET_HTTP_USESOCKETSHTTPHANDLER = 0 \
-e NUGET_CREDENTIALPROVIDER_SESSIONTOKENCACHE_ENABLED = true \
2016-02-02 18:04:50 +00:00
$DOTNET_BUILD_CONTAINER_TAG \
$BUILD_COMMAND " $@ "