mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
232d59baeb
Since "go test" doesn't seem to support "-installsuffix" as quite the same perfect solution that "go build" is happy to let it be, let's just switch those crappy old "integration/" tests to use our separate static dockerinit binary so we don't have to worry about compiling the entire test harness statically. 👍
Signed-off-by: Andrew "Tianon" Page <admwiggin@gmail.com>
29 lines
836 B
Bash
29 lines
836 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# dockerinit still needs to be a static binary, even if docker is dynamic
|
|
go build \
|
|
-o "$DEST/dockerinit-$VERSION" \
|
|
"${BUILDFLAGS[@]}" \
|
|
-ldflags "
|
|
$LDFLAGS
|
|
$LDFLAGS_STATIC
|
|
-extldflags \"$EXTLDFLAGS_STATIC\"
|
|
" \
|
|
./dockerinit
|
|
echo "Created binary: $DEST/dockerinit-$VERSION"
|
|
ln -sf "dockerinit-$VERSION" "$DEST/dockerinit"
|
|
|
|
sha1sum=
|
|
if command -v sha1sum &> /dev/null; then
|
|
sha1sum=sha1sum
|
|
elif command -v shasum &> /dev/null; then
|
|
# Mac OS X - why couldn't they just use the same command name and be happy?
|
|
sha1sum=shasum
|
|
else
|
|
echo >&2 'error: cannot find sha1sum command or equivalent'
|
|
exit 1
|
|
fi
|
|
|
|
# sha1 our new dockerinit to ensure separate docker and dockerinit always run in a perfect pair compiled for one another
|
|
export DOCKER_INITSHA1="$($sha1sum $DEST/dockerinit-$VERSION | cut -d' ' -f1)"
|