123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- #!/usr/bin/env bash
- set -e
- # This script builds various binary artifacts from a checkout of the docker
- # source code.
- #
- # Requirements:
- # - The current directory should be a checkout of the docker source code
- # (http://github.com/docker/docker). Whatever version is checked out
- # 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,
- # with the suffix -dirty if the repository isn't clean.
- # - The script is intented to be run inside the docker container specified
- # in the Dockerfile at the root of the source. In other words:
- # DO NOT CALL THIS SCRIPT DIRECTLY.
- # - The right way to call this script is to invoke "make" from
- # your checkout of the Docker repository.
- # the Makefile will do a "docker build -t docker ." and then
- # "docker run hack/make.sh" in the resulting image.
- #
- set -o pipefail
- export DOCKER_PKG='github.com/docker/docker'
- # 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!
- if [ "$(pwd)" != "/go/src/$DOCKER_PKG" ] || [ -z "$DOCKER_CROSSPLATFORMS" ]; then
- {
- echo "# WARNING! I don't seem to be running in the Docker container."
- echo "# The result of this command might be an incorrect build, and will not be"
- echo "# officially supported."
- echo "#"
- echo "# Try this instead: make all"
- echo "#"
- } >&2
- fi
- echo
- # List of bundles to create when no argument is passed
- DEFAULT_BUNDLES=(
- validate-dco
- validate-gofmt
- binary
- test-unit
- test-integration
- test-integration-cli
- test-docker-py
- dynbinary
- dyntest-unit
- dyntest-integration
- cover
- cross
- tgz
- ubuntu
- )
- VERSION=$(cat ./VERSION)
- if command -v git &> /dev/null && git rev-parse &> /dev/null; then
- GITCOMMIT=$(git rev-parse --short HEAD)
- if [ -n "$(git status --porcelain --untracked-files=no)" ]; then
- GITCOMMIT="$GITCOMMIT-dirty"
- fi
- elif [ "$DOCKER_GITCOMMIT" ]; then
- GITCOMMIT="$DOCKER_GITCOMMIT"
- 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
- fi
- if [ "$AUTO_GOPATH" ]; then
- rm -rf .gopath
- mkdir -p .gopath/src/"$(dirname "${DOCKER_PKG}")"
- ln -sf ../../../.. .gopath/src/"${DOCKER_PKG}"
- export GOPATH="$(pwd)/.gopath:$(pwd)/vendor"
- fi
- if [ ! "$GOPATH" ]; then
- echo >&2 'error: missing GOPATH; please see http://golang.org/doc/code.html#GOPATH'
- echo >&2 ' alternatively, set AUTO_GOPATH=1'
- exit 1
- fi
- if [ -z "$DOCKER_CLIENTONLY" ]; then
- DOCKER_BUILDTAGS+=" daemon"
- fi
- # Use these flags when compiling the tests and final binary
- LDFLAGS='
- -X '$DOCKER_PKG'/dockerversion.GITCOMMIT "'$GITCOMMIT'"
- -X '$DOCKER_PKG'/dockerversion.VERSION "'$VERSION'"
- '
- if [ -z "$DEBUG" ]; then
- LDFLAGS="-w $LDFLAGS"
- fi
- LDFLAGS_STATIC='-linkmode external'
- # Cgo -H windows is incompatible with -linkmode external.
- if [ "$(go env GOOS)" == 'windows' ]; then
- LDFLAGS_STATIC=''
- fi
- EXTLDFLAGS_STATIC='-static'
- # ORIG_BUILDFLAGS is necessary for the cross target which cannot always build
- # with options like -race.
- ORIG_BUILDFLAGS=( -a -tags "netgo static_build $DOCKER_BUILDTAGS" )
- BUILDFLAGS=( $BUILDFLAGS "${ORIG_BUILDFLAGS[@]}" )
- # Test timeout.
- : ${TIMEOUT:=30m}
- TESTFLAGS+=" -test.timeout=${TIMEOUT}"
- # A few more flags that are specific just to building a completely-static binary (see hack/make/binary)
- # PLEASE do not use these anywhere else.
- EXTLDFLAGS_STATIC_DOCKER="$EXTLDFLAGS_STATIC -lpthread -Wl,--unresolved-symbols=ignore-in-object-files"
- LDFLAGS_STATIC_DOCKER="
- $LDFLAGS_STATIC
- -X $DOCKER_PKG/dockerversion.IAMSTATIC true
- -extldflags \"$EXTLDFLAGS_STATIC_DOCKER\"
- "
- 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
- # If sqlite3.h doesn't exist under /usr/include,
- # check /usr/local/include also just in case
- # (e.g. FreeBSD Ports installs it under the directory)
- if [ ! -e /usr/include/sqlite3.h ] && [ -e /usr/local/include/sqlite3.h ]; then
- export CGO_CFLAGS='-I/usr/local/include'
- export CGO_LDFLAGS='-L/usr/local/lib'
- fi
- HAVE_GO_TEST_COVER=
- if \
- go help testflag | grep -- -cover > /dev/null \
- && go tool -n cover > /dev/null 2>&1 \
- ; then
- HAVE_GO_TEST_COVER=1
- fi
- # If $TESTFLAGS is set in the environment, it is passed as extra arguments to 'go test'.
- # You can use this to select certain tests to run, eg.
- #
- # TESTFLAGS='-run ^TestBuild$' ./hack/make.sh test
- #
- go_test_dir() {
- dir=$1
- coverpkg=$2
- testcover=()
- if [ "$HAVE_GO_TEST_COVER" ]; then
- # if our current go install has -cover, we want to use it :)
- mkdir -p "$DEST/coverprofiles"
- coverprofile="docker${dir#.}"
- coverprofile="$DEST/coverprofiles/${coverprofile//\//-}"
- testcover=( -cover -coverprofile "$coverprofile" $coverpkg )
- fi
- (
- export DEST
- echo '+ go test' $TESTFLAGS "${DOCKER_PKG}${dir#.}"
- cd "$dir"
- go test ${testcover[@]} -ldflags "$LDFLAGS" "${BUILDFLAGS[@]}" $TESTFLAGS
- )
- }
- # a helper to provide ".exe" when it's appropriate
- binary_extension() {
- if [ "$(go env GOOS)" = 'windows' ]; then
- echo -n '.exe'
- fi
- }
- # This helper function walks the current directory looking for directories
- # holding certain files ($1 parameter), and prints their paths on standard
- # output, one per line.
- find_dirs() {
- find . -not \( \
- \( \
- -path './vendor/*' \
- -o -path './integration/*' \
- -o -path './integration-cli/*' \
- -o -path './contrib/*' \
- -o -path './pkg/mflag/example/*' \
- -o -path './.git/*' \
- -o -path './bundles/*' \
- -o -path './docs/*' \
- -o -path './pkg/libcontainer/nsinit/*' \
- \) \
- -prune \
- \) -name "$1" -print0 | xargs -0n1 dirname | sort -u
- }
- hash_files() {
- while [ $# -gt 0 ]; do
- f="$1"
- shift
- dir="$(dirname "$f")"
- base="$(basename "$f")"
- for hashAlgo in md5 sha256; do
- if command -v "${hashAlgo}sum" &> /dev/null; then
- (
- # subshell and cd so that we get output files like:
- # $HASH docker-$VERSION
- # instead of:
- # $HASH /go/src/github.com/.../$VERSION/binary/docker-$VERSION
- cd "$dir"
- "${hashAlgo}sum" "$base" > "$base.$hashAlgo"
- )
- fi
- done
- done
- }
- bundle() {
- bundlescript=$1
- bundle=$(basename $bundlescript)
- echo "---> Making bundle: $bundle (in bundles/$VERSION/$bundle)"
- mkdir -p bundles/$VERSION/$bundle
- source "$bundlescript" "$(pwd)/bundles/$VERSION/$bundle"
- }
- main() {
- # We want this to fail if the bundles already exist and cannot be removed.
- # This is to avoid mixing bundles from different versions of the code.
- mkdir -p bundles
- if [ -e "bundles/$VERSION" ]; then
- echo "bundles/$VERSION already exists. Removing."
- rm -fr bundles/$VERSION && mkdir bundles/$VERSION || exit 1
- echo
- fi
- SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
- if [ $# -lt 1 ]; then
- bundles=(${DEFAULT_BUNDLES[@]})
- else
- bundles=($@)
- fi
- for bundle in ${bundles[@]}; do
- bundle $SCRIPTDIR/make/$bundle
- echo
- done
- }
- main "$@"
|