2014-01-21 20:21:56 -05:00
|
|
|
#!/usr/bin/env bash
|
2013-10-17 04:08:14 -04:00
|
|
|
set -e
|
2013-08-07 00:00:50 -04:00
|
|
|
|
2013-08-09 20:38:48 -04:00
|
|
|
# This script builds various binary artifacts from a checkout of the docker
|
|
|
|
# source code.
|
2013-08-07 00:00:50 -04:00
|
|
|
#
|
|
|
|
# Requirements:
|
2013-08-09 20:38:48 -04:00
|
|
|
# - The current directory should be a checkout of the docker source code
|
2015-04-11 13:22:16 -04:00
|
|
|
# (https://github.com/docker/docker). Whatever version is checked out
|
2013-08-09 20:38:48 -04:00
|
|
|
# will be built.
|
|
|
|
# - The VERSION file, at the root of the repository, should exist, and
|
|
|
|
# will be used as Docker binary version and package version.
|
|
|
|
# - The hash of the git commit will also be included in the Docker binary,
|
2015-12-24 12:11:49 -05:00
|
|
|
# with the suffix -unsupported if the repository isn't clean.
|
2015-12-13 11:00:39 -05:00
|
|
|
# - The script is intended to be run inside the docker container specified
|
2013-08-09 20:38:48 -04:00
|
|
|
# in the Dockerfile at the root of the source. In other words:
|
|
|
|
# DO NOT CALL THIS SCRIPT DIRECTLY.
|
2013-12-02 02:59:45 -05:00
|
|
|
# - The right way to call this script is to invoke "make" from
|
2014-02-10 18:21:20 -05:00
|
|
|
# your checkout of the Docker repository.
|
2014-01-04 23:15:15 -05:00
|
|
|
# the Makefile will do a "docker build -t docker ." and then
|
2014-05-08 09:11:17 -04:00
|
|
|
# "docker run hack/make.sh" in the resulting image.
|
2013-09-23 14:19:28 -04:00
|
|
|
#
|
2013-08-07 00:00:50 -04:00
|
|
|
|
2013-10-17 04:08:14 -04:00
|
|
|
set -o pipefail
|
2013-08-07 00:00:50 -04:00
|
|
|
|
2014-07-30 19:02:04 -04:00
|
|
|
export DOCKER_PKG='github.com/docker/docker'
|
2015-04-14 11:38:14 -04:00
|
|
|
export SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
2015-04-14 12:43:33 -04:00
|
|
|
export MAKEDIR="$SCRIPTDIR/make"
|
2016-06-02 15:09:09 -04:00
|
|
|
export PKG_CONFIG=${PKG_CONFIG:-pkg-config}
|
2014-07-30 19:02:04 -04:00
|
|
|
|
2013-08-09 20:43:02 -04:00
|
|
|
# We're a nice, sexy, little shell script, and people might try to run us;
|
|
|
|
# but really, they shouldn't. We want to be in a container!
|
2016-01-13 17:53:49 -05:00
|
|
|
inContainer="AssumeSoInitially"
|
|
|
|
if [ "$(go env GOHOSTOS)" = 'windows' ]; then
|
2016-01-24 12:22:50 -05:00
|
|
|
if [ -z "$FROM_DOCKERFILE" ]; then
|
2016-01-13 17:53:49 -05:00
|
|
|
unset inContainer
|
|
|
|
fi
|
|
|
|
else
|
2017-03-02 08:36:37 -05:00
|
|
|
if [ "$PWD" != "/go/src/$DOCKER_PKG" ]; then
|
2016-01-13 17:53:49 -05:00
|
|
|
unset inContainer
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2016-01-24 04:28:18 -05:00
|
|
|
if [ -z "$inContainer" ]; then
|
2014-01-25 01:01:12 -05:00
|
|
|
{
|
2016-01-13 17:53:49 -05:00
|
|
|
echo "# WARNING! I don't seem to be running in a Docker container."
|
2014-01-25 01:01:12 -05:00
|
|
|
echo "# The result of this command might be an incorrect build, and will not be"
|
2016-01-13 17:53:49 -05:00
|
|
|
echo "# officially supported."
|
2014-01-25 01:01:12 -05:00
|
|
|
echo "#"
|
|
|
|
echo "# Try this instead: make all"
|
|
|
|
echo "#"
|
|
|
|
} >&2
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo
|
2013-08-09 20:43:02 -04:00
|
|
|
|
2013-09-09 21:45:40 -04:00
|
|
|
# List of bundles to create when no argument is passed
|
|
|
|
DEFAULT_BUNDLES=(
|
2016-02-19 17:42:51 -05:00
|
|
|
binary-daemon
|
2015-11-06 02:35:47 -05:00
|
|
|
dynbinary
|
2014-07-03 14:29:07 -04:00
|
|
|
|
2017-05-23 16:32:34 -04:00
|
|
|
test-integration
|
2014-12-19 02:20:59 -05:00
|
|
|
test-docker-py
|
2014-07-03 14:29:07 -04:00
|
|
|
|
2013-12-19 01:06:14 -05:00
|
|
|
cross
|
2013-09-09 21:45:40 -04:00
|
|
|
)
|
|
|
|
|
2017-11-01 15:46:46 -04:00
|
|
|
VERSION=${VERSION:-dev}
|
2017-07-19 00:17:19 -04:00
|
|
|
! BUILDTIME=$(date -u -d "@${SOURCE_DATE_EPOCH:-$(date +%s)}" --rfc-3339 ns 2> /dev/null | sed -e 's/ /T/')
|
2016-11-16 05:49:32 -05:00
|
|
|
if [ "$DOCKER_GITCOMMIT" ]; then
|
|
|
|
GITCOMMIT="$DOCKER_GITCOMMIT"
|
2017-08-01 11:51:24 -04:00
|
|
|
elif command -v git &> /dev/null && [ -e .git ] && git rev-parse &> /dev/null; then
|
2013-11-21 17:11:17 -05:00
|
|
|
GITCOMMIT=$(git rev-parse --short HEAD)
|
2014-02-10 15:44:34 -05:00
|
|
|
if [ -n "$(git status --porcelain --untracked-files=no)" ]; then
|
2015-12-24 12:11:49 -05:00
|
|
|
GITCOMMIT="$GITCOMMIT-unsupported"
|
2016-03-25 10:09:03 -04:00
|
|
|
echo "#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
|
|
|
|
echo "# GITCOMMIT = $GITCOMMIT"
|
|
|
|
echo "# The version you are building is listed as unsupported because"
|
2016-10-29 03:03:26 -04:00
|
|
|
echo "# there are some files in the git repository that are in an uncommitted state."
|
2016-03-25 10:09:03 -04:00
|
|
|
echo "# Commit these changes, or add to .gitignore to remove the -unsupported from the version."
|
|
|
|
echo "# Here is the current list:"
|
|
|
|
git status --porcelain --untracked-files=no
|
|
|
|
echo "#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
|
2013-11-21 17:11:17 -05:00
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo >&2 'error: .git directory missing and DOCKER_GITCOMMIT not specified'
|
|
|
|
echo >&2 ' Please either build with the .git directory accessible, or specify the'
|
|
|
|
echo >&2 ' exact (--short) commit hash you are building using DOCKER_GITCOMMIT for'
|
|
|
|
echo >&2 ' future accountability in diagnosing build issues. Thanks!'
|
|
|
|
exit 1
|
2013-08-14 21:01:13 -04:00
|
|
|
fi
|
2013-08-07 00:00:50 -04:00
|
|
|
|
2014-02-09 20:21:01 -05:00
|
|
|
if [ "$AUTO_GOPATH" ]; then
|
|
|
|
rm -rf .gopath
|
2014-07-30 19:02:04 -04:00
|
|
|
mkdir -p .gopath/src/"$(dirname "${DOCKER_PKG}")"
|
|
|
|
ln -sf ../../../.. .gopath/src/"${DOCKER_PKG}"
|
2016-10-31 14:22:28 -04:00
|
|
|
export GOPATH="${PWD}/.gopath"
|
2014-02-09 20:21:01 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! "$GOPATH" ]; then
|
2015-04-11 13:22:16 -04:00
|
|
|
echo >&2 'error: missing GOPATH; please see https://golang.org/doc/code.html#GOPATH'
|
2014-02-09 20:21:01 -05:00
|
|
|
echo >&2 ' alternatively, set AUTO_GOPATH=1'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2016-06-02 15:09:09 -04:00
|
|
|
if ${PKG_CONFIG} 'libsystemd >= 209' 2> /dev/null ; then
|
2016-02-19 17:42:51 -05:00
|
|
|
DOCKER_BUILDTAGS+=" journald"
|
2016-06-02 15:09:09 -04:00
|
|
|
elif ${PKG_CONFIG} 'libsystemd-journal' 2> /dev/null ; then
|
2016-02-19 17:42:51 -05:00
|
|
|
DOCKER_BUILDTAGS+=" journald journald_compat"
|
2014-08-01 13:34:06 -04:00
|
|
|
fi
|
|
|
|
|
2015-04-03 03:30:12 -04:00
|
|
|
# test whether "btrfs/version.h" exists and apply btrfs_noversion appropriately
|
|
|
|
if \
|
|
|
|
command -v gcc &> /dev/null \
|
2015-11-17 12:44:36 -05:00
|
|
|
&& ! gcc -E - -o /dev/null &> /dev/null <<<'#include <btrfs/version.h>' \
|
2015-04-03 03:30:12 -04:00
|
|
|
; then
|
|
|
|
DOCKER_BUILDTAGS+=' btrfs_noversion'
|
|
|
|
fi
|
|
|
|
|
2015-04-21 18:14:59 -04:00
|
|
|
# test whether "libdevmapper.h" is new enough to support deferred remove
|
|
|
|
# functionality.
|
|
|
|
if \
|
|
|
|
command -v gcc &> /dev/null \
|
2017-08-01 20:29:29 -04:00
|
|
|
&& ! ( echo -e '#include <libdevmapper.h>\nint main() { dm_task_deferred_remove(NULL); }'| gcc -xc - -o /dev/null $(pkg-config --libs devmapper) &> /dev/null ) \
|
2015-04-21 18:14:59 -04:00
|
|
|
; then
|
2017-07-05 17:15:59 -04:00
|
|
|
DOCKER_BUILDTAGS+=' libdm_no_deferred_remove'
|
2015-04-21 18:14:59 -04:00
|
|
|
fi
|
|
|
|
|
2013-09-09 19:20:30 -04:00
|
|
|
# Use these flags when compiling the tests and final binary
|
2014-11-20 12:56:54 -05:00
|
|
|
|
2015-02-04 16:22:38 -05:00
|
|
|
IAMSTATIC='true'
|
2015-05-07 08:22:44 -04:00
|
|
|
if [ -z "$DOCKER_DEBUG" ]; then
|
|
|
|
LDFLAGS='-w'
|
|
|
|
fi
|
2014-11-20 12:56:54 -05:00
|
|
|
|
2015-11-15 17:47:48 -05:00
|
|
|
LDFLAGS_STATIC=''
|
2014-03-06 21:55:22 -05:00
|
|
|
EXTLDFLAGS_STATIC='-static'
|
2014-09-25 14:22:24 -04:00
|
|
|
# ORIG_BUILDFLAGS is necessary for the cross target which cannot always build
|
|
|
|
# with options like -race.
|
2017-01-17 07:09:50 -05:00
|
|
|
ORIG_BUILDFLAGS=( -tags "autogen netgo static_build $DOCKER_BUILDTAGS" -installsuffix netgo )
|
2015-01-17 00:00:44 -05:00
|
|
|
# see https://github.com/golang/go/issues/9369#issuecomment-69864440 for why -installsuffix is necessary here
|
2016-01-04 21:46:04 -05:00
|
|
|
|
|
|
|
# When $DOCKER_INCREMENTAL_BINARY is set in the environment, enable incremental
|
|
|
|
# builds by installing dependent packages to the GOPATH.
|
|
|
|
REBUILD_FLAG="-a"
|
2016-11-15 10:23:48 -05:00
|
|
|
if [ "$DOCKER_INCREMENTAL_BINARY" == "1" ] || [ "$DOCKER_INCREMENTAL_BINARY" == "true" ]; then
|
2016-01-04 21:46:04 -05:00
|
|
|
REBUILD_FLAG="-i"
|
|
|
|
fi
|
|
|
|
ORIG_BUILDFLAGS+=( $REBUILD_FLAG )
|
|
|
|
|
2014-09-25 14:22:24 -04:00
|
|
|
BUILDFLAGS=( $BUILDFLAGS "${ORIG_BUILDFLAGS[@]}" )
|
2016-01-20 01:30:54 -05:00
|
|
|
|
2017-07-05 17:15:59 -04:00
|
|
|
# Test timeout.
|
2016-01-20 01:30:54 -05:00
|
|
|
if [ "${DOCKER_ENGINE_GOARCH}" == "arm" ]; then
|
2016-03-11 14:06:56 -05:00
|
|
|
: ${TIMEOUT:=10m}
|
2016-03-04 12:32:30 -05:00
|
|
|
elif [ "${DOCKER_ENGINE_GOARCH}" == "windows" ]; then
|
2016-03-11 14:06:56 -05:00
|
|
|
: ${TIMEOUT:=8m}
|
2016-01-20 01:30:54 -05:00
|
|
|
else
|
2016-03-11 14:06:56 -05:00
|
|
|
: ${TIMEOUT:=5m}
|
2016-01-20 01:30:54 -05:00
|
|
|
fi
|
|
|
|
|
2014-03-06 21:55:22 -05:00
|
|
|
LDFLAGS_STATIC_DOCKER="
|
|
|
|
$LDFLAGS_STATIC
|
2015-09-08 14:29:43 -04:00
|
|
|
-extldflags \"$EXTLDFLAGS_STATIC\"
|
2014-03-06 21:55:22 -05:00
|
|
|
"
|
|
|
|
|
2014-02-28 17:45:56 -05:00
|
|
|
if [ "$(uname -s)" = 'FreeBSD' ]; then
|
|
|
|
# Tell cgo the compiler is Clang, not GCC
|
|
|
|
# https://code.google.com/p/go/source/browse/src/cmd/cgo/gcc.go?spec=svne77e74371f2340ee08622ce602e9f7b15f29d8d3&r=e6794866ebeba2bf8818b9261b54e2eef1c9e588#752
|
|
|
|
export CC=clang
|
|
|
|
|
|
|
|
# "-extld clang" is a workaround for
|
|
|
|
# https://code.google.com/p/go/issues/detail?id=6845
|
|
|
|
LDFLAGS="$LDFLAGS -extld clang"
|
|
|
|
fi
|
|
|
|
|
2013-09-09 21:45:40 -04:00
|
|
|
bundle() {
|
2015-05-29 16:07:16 -04:00
|
|
|
local bundle="$1"; shift
|
|
|
|
echo "---> Making bundle: $(basename "$bundle") (in $DEST)"
|
|
|
|
source "$SCRIPTDIR/make/$bundle" "$@"
|
2013-08-07 00:00:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
main() {
|
2017-08-30 14:45:18 -04:00
|
|
|
if [ -z "${KEEPBUNDLE-}" ]; then
|
|
|
|
echo "Removing bundles/"
|
|
|
|
rm -rf "bundles/*"
|
2013-09-23 14:19:28 -04:00
|
|
|
echo
|
2013-09-09 21:45:40 -04:00
|
|
|
fi
|
2017-08-30 14:45:18 -04:00
|
|
|
mkdir -p bundles
|
2015-04-03 04:07:57 -04:00
|
|
|
|
2017-08-30 14:45:18 -04:00
|
|
|
# Windows and symlinks don't get along well
|
2015-04-03 04:07:57 -04:00
|
|
|
if [ "$(go env GOHOSTOS)" != 'windows' ]; then
|
2015-05-27 03:21:09 -04:00
|
|
|
rm -f bundles/latest
|
2017-08-30 14:45:18 -04:00
|
|
|
# preserve latest symlink for backward compatibility
|
|
|
|
ln -sf . bundles/latest
|
2015-04-03 04:07:57 -04:00
|
|
|
fi
|
|
|
|
|
2013-09-09 21:45:40 -04:00
|
|
|
if [ $# -lt 1 ]; then
|
2013-10-17 23:33:34 -04:00
|
|
|
bundles=(${DEFAULT_BUNDLES[@]})
|
2013-09-09 21:45:40 -04:00
|
|
|
else
|
|
|
|
bundles=($@)
|
|
|
|
fi
|
|
|
|
for bundle in ${bundles[@]}; do
|
2017-08-30 14:45:18 -04:00
|
|
|
export DEST="bundles/$(basename "$bundle")"
|
2015-05-29 16:07:16 -04:00
|
|
|
# Cygdrive paths don't play well with go build -o.
|
|
|
|
if [[ "$(uname -s)" == CYGWIN* ]]; then
|
|
|
|
export DEST="$(cygpath -mw "$DEST")"
|
|
|
|
fi
|
|
|
|
mkdir -p "$DEST"
|
|
|
|
ABS_DEST="$(cd "$DEST" && pwd -P)"
|
|
|
|
bundle "$bundle"
|
2013-09-23 14:19:28 -04:00
|
|
|
echo
|
2013-09-09 21:45:40 -04:00
|
|
|
done
|
2013-08-07 00:00:50 -04:00
|
|
|
}
|
|
|
|
|
2013-09-09 21:45:40 -04:00
|
|
|
main "$@"
|