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,
|
2013-08-16 18:30:50 -04:00
|
|
|
# with the suffix -dirty if the repository isn't clean.
|
2013-09-10 14:33:26 -04:00
|
|
|
# - The script is intented 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"
|
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!
|
2015-04-14 11:21:12 -04:00
|
|
|
if [ "$PWD" != "/go/src/$DOCKER_PKG" ] || [ -z "$DOCKER_CROSSPLATFORMS" ]; then
|
2014-01-25 01:01:12 -05:00
|
|
|
{
|
|
|
|
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
|
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=(
|
2014-04-04 02:37:50 -04:00
|
|
|
validate-dco
|
|
|
|
validate-gofmt
|
2015-07-22 18:19:32 -04:00
|
|
|
validate-lint
|
2015-06-12 15:19:56 -04:00
|
|
|
validate-pkg
|
2015-04-22 14:20:32 -04:00
|
|
|
validate-test
|
2015-01-30 14:45:02 -05:00
|
|
|
validate-toml
|
2015-04-01 00:48:03 -04:00
|
|
|
validate-vet
|
2014-07-03 14:29:07 -04:00
|
|
|
|
2013-09-09 21:45:40 -04:00
|
|
|
binary
|
2014-07-03 14:29:07 -04:00
|
|
|
|
2014-04-29 18:49:03 -04:00
|
|
|
test-unit
|
2014-03-31 13:55:55 -04:00
|
|
|
test-integration-cli
|
2014-12-19 02:20:59 -05:00
|
|
|
test-docker-py
|
2014-07-03 14:29:07 -04:00
|
|
|
|
2013-10-18 01:40:41 -04:00
|
|
|
dynbinary
|
2014-07-03 14:29:07 -04:00
|
|
|
|
2013-12-08 22:20:55 -05:00
|
|
|
cover
|
2013-12-19 01:06:14 -05:00
|
|
|
cross
|
2013-11-17 22:25:08 -05:00
|
|
|
tgz
|
2013-09-09 21:45:40 -04:00
|
|
|
ubuntu
|
|
|
|
)
|
|
|
|
|
2015-04-14 12:31:52 -04:00
|
|
|
VERSION=$(< ./VERSION)
|
2014-02-10 15:44:34 -05:00
|
|
|
if command -v git &> /dev/null && 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
|
2013-11-21 17:11:17 -05:00
|
|
|
GITCOMMIT="$GITCOMMIT-dirty"
|
|
|
|
fi
|
2015-06-19 13:03:13 -04:00
|
|
|
BUILDTIME=$(date -u)
|
2013-11-21 17:11:17 -05:00
|
|
|
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
|
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}"
|
2015-04-14 11:21:12 -04:00
|
|
|
export GOPATH="${PWD}/.gopath:${PWD}/vendor"
|
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
|
|
|
|
|
2015-05-19 18:09:58 -04:00
|
|
|
if [ "$DOCKER_EXPERIMENTAL" ]; then
|
|
|
|
echo >&2 '# WARNING! DOCKER_EXPERIMENTAL is set: building experimental features'
|
|
|
|
echo >&2
|
|
|
|
DOCKER_BUILDTAGS+=" experimental"
|
|
|
|
fi
|
|
|
|
|
2014-08-01 13:34:06 -04:00
|
|
|
if [ -z "$DOCKER_CLIENTONLY" ]; then
|
|
|
|
DOCKER_BUILDTAGS+=" daemon"
|
|
|
|
fi
|
|
|
|
|
2014-12-30 18:24:53 -05:00
|
|
|
if [ "$DOCKER_EXECDRIVER" = 'lxc' ]; then
|
|
|
|
DOCKER_BUILDTAGS+=' test_no_exec'
|
|
|
|
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 \
|
|
|
|
&& ! gcc -E - &> /dev/null <<<'#include <btrfs/version.h>' \
|
|
|
|
; 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 \
|
|
|
|
&& ! ( echo -e '#include <libdevmapper.h>\nint main() { dm_task_deferred_remove(NULL); }'| gcc -ldevmapper -xc - &> /dev/null ) \
|
|
|
|
; then
|
|
|
|
DOCKER_BUILDTAGS+=' libdm_no_deferred_remove'
|
|
|
|
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-04-14 11:38:14 -04:00
|
|
|
source "$SCRIPTDIR/make/.go-autogen"
|
2015-05-07 08:22:44 -04:00
|
|
|
if [ -z "$DOCKER_DEBUG" ]; then
|
|
|
|
LDFLAGS='-w'
|
|
|
|
fi
|
2014-11-20 12:56:54 -05:00
|
|
|
|
2014-03-06 21:55:22 -05:00
|
|
|
LDFLAGS_STATIC='-linkmode external'
|
2014-11-18 17:44:05 -05:00
|
|
|
# Cgo -H windows is incompatible with -linkmode external.
|
|
|
|
if [ "$(go env GOOS)" == 'windows' ]; then
|
|
|
|
LDFLAGS_STATIC=''
|
|
|
|
fi
|
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.
|
2015-09-04 16:15:09 -04:00
|
|
|
ORIG_BUILDFLAGS=( -a -tags "netgo static_build sqlite_omit_load_extension $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
|
2014-09-25 14:22:24 -04:00
|
|
|
BUILDFLAGS=( $BUILDFLAGS "${ORIG_BUILDFLAGS[@]}" )
|
|
|
|
# Test timeout.
|
2015-07-13 16:19:59 -04:00
|
|
|
: ${TIMEOUT:=60m}
|
2014-09-25 14:22:24 -04:00
|
|
|
TESTFLAGS+=" -test.timeout=${TIMEOUT}"
|
2013-09-09 19:20:30 -04:00
|
|
|
|
2014-03-06 21:55:22 -05:00
|
|
|
# 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.
|
make binary: do not ignore unresolved symbols
TL;DR: stop building static binary that may fail
Linker flag --unresolved-symbols=ignore-in-shared-libs was added
in commit 06d0843 two years ago for the static build case, presumably
to avoid dealing with problem of missing libraries.
For the record, this is what ld(1) man page says:
> --unresolved-symbols=method
> Determine how to handle unresolved symbols. There are four
> possible values for method:
> .........
> ignore-in-shared-libs
> Report unresolved symbols that come from regular object files,
> but ignore them if they come from shared libraries. This can
> be useful when creating a dynamic binary and it is known that
> all the shared libraries that it should be referencing are
> included on the linker's command line.
Here, the flag is not used for its purpose ("creating a dynamic binary")
and does more harm than good. Instead of complaining about missing symbols
as it should do if some libraries are missing from LIBS/LDFLAGS, it lets
ld create a binary with unresolved symbols, ike this:
$ readelf -s bundles/1.7.1/binary/docker-1.7.1 | grep -w UND
........
21029: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND dlopen
.........
Such binary is working just fine -- until code calls one of those
functions, then it crashes (for apparently no reason, i.e. it is
impossible to tell why from the diagnistics printed).
In other words, adding this flag allows to build a static binary
with missing libraries, hiding the problem from both a developer
(who forgot to add a library to #cgo: LDFLAGS -- I was one such
developer a few days ago when I was working on ploop graphdriver)
and from a user (who expects the binary to work without crashing,
and it does that until the code calls a function in one of those
libraries).
Removing the flag immediately unveils the problem (as it should):
/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libsqlite3.a(sqlite3.o):
In function `unixDlError':
(.text+0x20971): undefined reference to `dlerror'
/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libsqlite3.a(sqlite3.o):
In function `unixDlClose':
(.text+0x8814): undefined reference to `dlclose'
The problem is, gosqlite package says:
#cgo LDFLAGS: -lsqlite3
which is enough for dynamic linking, as indirect dependencies (i.e.
libraries required by libsqlite3.so) are listed in .so file and will be
resolved dynamically by ldd upon executing the binary.
For static linking though, one has to list all the required libraries,
both direct and indirect. For libraries with pkgconfig support the
list of required libraries can be obtained with pkg-config:
$ pkg-config --libs sqlite3 # dynamic linking case
-lsqlite3
$ pkg-config --libs --static sqlite3 # static case
-lsqlite3 -ldl -lpthread
It seems that all one has to do is to fix gosqlite this way:
-#cgo LDFLAGS: -lsqlite3
+#cgo pkg-config: sqlite3
Unfortunately, cmd/go doesn't know that it needs to pass --static
flag to pkg-config in case of static linking
(see https://github.com/golang/go/issues/12058).
So, for one, one has to do one of these things:
1. Patch sqlite.go like this:
-#cgo LDFLAGS: -lsqlite3
+#cgo pkg-config: --static sqlite3
(this is exactly what I do in goploop, see
https://github.com/kolyshkin/goploop/commit/e9aa072f51)
2. Patch sqlite.go like this:
-#cgo LDFLAGS: -lsqlite3
+#cgo LDFLAGS: -lsqlite3 -ldl -lpthread
(I would submit this patch to gosqlite but it seems that
https://code.google.com/p/gosqlite/ is deserted and not maintained,
and patching it here is not right as it is "vendored")
3. Explicitly add -ldl for the static link case.
This is what this patch does.
4. Fork sqlite to github and maintain it there. Personally I am not
ready for that, as I'm neither a Go expert nor gosqlite user.
Now, #3 doesn't look like a clear solution, but nevertheless it makes
the build much better than it was before.
Signed-off-by: Kir Kolyshkin <kir@openvz.org>
2015-08-06 19:04:39 -04:00
|
|
|
EXTLDFLAGS_STATIC_DOCKER="$EXTLDFLAGS_STATIC -lpthread -ldl"
|
2014-03-06 21:55:22 -05:00
|
|
|
LDFLAGS_STATIC_DOCKER="
|
|
|
|
$LDFLAGS_STATIC
|
|
|
|
-extldflags \"$EXTLDFLAGS_STATIC_DOCKER\"
|
|
|
|
"
|
|
|
|
|
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
|
|
|
|
|
2014-04-16 11:41:19 -04:00
|
|
|
# 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
|
|
|
|
|
2013-12-08 22:20:55 -05:00
|
|
|
HAVE_GO_TEST_COVER=
|
2013-12-17 00:54:06 -05:00
|
|
|
if \
|
2013-12-30 20:58:25 -05:00
|
|
|
go help testflag | grep -- -cover > /dev/null \
|
2013-12-17 00:54:06 -05:00
|
|
|
&& go tool -n cover > /dev/null 2>&1 \
|
|
|
|
; then
|
2013-12-08 22:20:55 -05:00
|
|
|
HAVE_GO_TEST_COVER=1
|
|
|
|
fi
|
|
|
|
|
2013-12-08 15:49:57 -05:00
|
|
|
# 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.
|
|
|
|
#
|
2015-04-30 03:40:48 -04:00
|
|
|
# TESTFLAGS='-test.run ^TestBuild$' ./hack/make.sh test-unit
|
|
|
|
#
|
|
|
|
# For integration-cli test, we use [gocheck](https://labix.org/gocheck), if you want
|
|
|
|
# to run certain tests on your local host, you should run with command:
|
|
|
|
#
|
|
|
|
# TESTFLAGS='-check.f DockerSuite.TestBuild*' ./hack/make.sh binary test-integration-cli
|
2013-12-08 15:49:57 -05:00
|
|
|
#
|
|
|
|
go_test_dir() {
|
|
|
|
dir=$1
|
2014-02-10 18:21:20 -05:00
|
|
|
coverpkg=$2
|
2013-12-08 22:20:55 -05:00
|
|
|
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#.}"
|
2015-05-29 16:07:16 -04:00
|
|
|
coverprofile="$ABS_DEST/coverprofiles/${coverprofile//\//-}"
|
2014-02-10 18:21:20 -05:00
|
|
|
testcover=( -cover -coverprofile "$coverprofile" $coverpkg )
|
2013-12-08 22:20:55 -05:00
|
|
|
fi
|
2013-12-08 15:49:57 -05:00
|
|
|
(
|
2014-07-30 19:02:04 -04:00
|
|
|
echo '+ go test' $TESTFLAGS "${DOCKER_PKG}${dir#.}"
|
2013-12-08 15:49:57 -05:00
|
|
|
cd "$dir"
|
2015-05-29 16:07:16 -04:00
|
|
|
export DEST="$ABS_DEST" # we're in a subshell, so this is safe -- our integration-cli tests need DEST, and "cd" screws it up
|
2015-02-14 05:27:31 -05:00
|
|
|
test_env go test ${testcover[@]} -ldflags "$LDFLAGS" "${BUILDFLAGS[@]}" $TESTFLAGS
|
2013-12-08 15:49:57 -05:00
|
|
|
)
|
|
|
|
}
|
2015-02-14 05:27:31 -05:00
|
|
|
test_env() {
|
|
|
|
# use "env -i" to tightly control the environment variables that bleed into the tests
|
|
|
|
env -i \
|
|
|
|
DEST="$DEST" \
|
|
|
|
DOCKER_EXECDRIVER="$DOCKER_EXECDRIVER" \
|
|
|
|
DOCKER_GRAPHDRIVER="$DOCKER_GRAPHDRIVER" \
|
2015-04-07 19:53:39 -04:00
|
|
|
DOCKER_USERLANDPROXY="$DOCKER_USERLANDPROXY" \
|
2015-02-14 05:27:31 -05:00
|
|
|
DOCKER_HOST="$DOCKER_HOST" \
|
2015-08-05 12:21:45 -04:00
|
|
|
DOCKER_REMOTE_DAEMON="$DOCKER_REMOTE_DAEMON" \
|
2015-02-14 05:27:31 -05:00
|
|
|
GOPATH="$GOPATH" \
|
2015-05-29 16:07:16 -04:00
|
|
|
HOME="$ABS_DEST/fake-HOME" \
|
2015-02-14 05:27:31 -05:00
|
|
|
PATH="$PATH" \
|
2015-05-22 18:14:22 -04:00
|
|
|
TEMP="$TEMP" \
|
2015-02-14 05:27:31 -05:00
|
|
|
TEST_DOCKERINIT_PATH="$TEST_DOCKERINIT_PATH" \
|
|
|
|
"$@"
|
|
|
|
}
|
2013-12-08 15:49:57 -05:00
|
|
|
|
2015-01-09 19:28:40 -05:00
|
|
|
# a helper to provide ".exe" when it's appropriate
|
|
|
|
binary_extension() {
|
|
|
|
if [ "$(go env GOOS)" = 'windows' ]; then
|
|
|
|
echo -n '.exe'
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2014-02-10 18:21:20 -05:00
|
|
|
# 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() {
|
2014-03-21 01:31:39 -04:00
|
|
|
find . -not \( \
|
2014-03-12 03:18:12 -04:00
|
|
|
\( \
|
2015-01-09 19:28:40 -05:00
|
|
|
-path './vendor/*' \
|
|
|
|
-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/*' \
|
2014-03-12 03:18:12 -04:00
|
|
|
\) \
|
2014-02-10 18:21:20 -05:00
|
|
|
-prune \
|
|
|
|
\) -name "$1" -print0 | xargs -0n1 dirname | sort -u
|
|
|
|
}
|
|
|
|
|
2014-03-19 21:58:39 -04:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
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() {
|
2013-09-23 14:19:28 -04:00
|
|
|
# We want this to fail if the bundles already exist and cannot be removed.
|
2013-09-09 21:45:40 -04:00
|
|
|
# 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."
|
2015-04-14 12:08:08 -04:00
|
|
|
rm -fr "bundles/$VERSION" && mkdir "bundles/$VERSION" || exit 1
|
2013-09-23 14:19:28 -04:00
|
|
|
echo
|
2013-09-09 21:45:40 -04:00
|
|
|
fi
|
2015-04-03 04:07:57 -04:00
|
|
|
|
|
|
|
if [ "$(go env GOHOSTOS)" != 'windows' ]; then
|
|
|
|
# Windows and symlinks don't get along well
|
2015-05-26 08:54:08 -04:00
|
|
|
|
2015-05-27 03:21:09 -04:00
|
|
|
rm -f bundles/latest
|
|
|
|
ln -s "$VERSION" 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
|
2015-05-29 16:07:16 -04:00
|
|
|
export DEST="bundles/$VERSION/$(basename "$bundle")"
|
|
|
|
# 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 "$@"
|