7c551964c0
Update the vendored copy of github.com/containers/storage to revision d10d8680af74070b362637408a7fe28c4b1f1eff. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
18 lines
427 B
Bash
18 lines
427 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
CROSSPLATFORMS="linux/amd64 linux/386 linux/arm darwin/amd64"
|
|
BUILDTAGS+=" exclude_graphdriver_devicemapper"
|
|
|
|
for platform in $CROSSPLATFORMS; do
|
|
(
|
|
export KEEPDEST=1
|
|
export DEST="$DEST/$platform" # bundles/VERSION/cross/GOOS/GOARCH/docker-VERSION
|
|
mkdir -p "$DEST"
|
|
ABS_DEST="$(cd "$DEST" && pwd -P)"
|
|
export GOOS=${platform%/*}
|
|
export GOARCH=${platform##*/}
|
|
|
|
source "${MAKEDIR}/binary"
|
|
)
|
|
done
|