mirror of
https://github.com/mjl-/mox.git
synced 2024-12-26 08:23:48 +03:00
f3f2c6f8ea
binaries for linux/amd64 were build for each target platform. apparently the --platform in the first-stage overrides the $TARGET* variables of the build. docker behaviour always manages to surprise me...
54 lines
2.6 KiB
Bash
Executable file
54 lines
2.6 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
# Abort on error.
|
|
set -e
|
|
|
|
# We are using podman because docker generates errors when it's in the second
|
|
# stage and copies a non-linux/amd64 binary from the first stage that is
|
|
# linux/amd64.
|
|
|
|
# The platforms we build for (what alpine supports).
|
|
platforms=linux/amd64,linux/arm64,linux/arm,linux/386,linux/ppc64le,linux/s390x
|
|
# todo: linux/riscv64 currently absent for alpine:latest, only at alpine:edge
|
|
|
|
# We are building by "go install github.com/mjl-/mox@$moxversion", to ensure the
|
|
# binary gets a proper version stamped into its buildinfo. It also helps to ensure
|
|
# there is no accidental local change in the image.
|
|
moxversion=$(go list -mod mod -m github.com/mjl-/mox@$(git rev-parse HEAD) | cut -f2 -d' ')
|
|
echo Building mox $moxversion for $platforms, without local/uncommitted changes
|
|
|
|
# Ensure latest golang and alpine docker images.
|
|
podman image pull --quiet docker.io/golang:1-alpine
|
|
for i in $(echo $platforms | sed 's/,/ /g'); do
|
|
podman image pull --quiet --platform $i docker.io/alpine:latest
|
|
done
|
|
# "Last pulled" apparently is the one used for "podman run" below, not the one
|
|
# that matches the platform. So pull for current platform again.
|
|
podman image pull --quiet docker.io/alpine:latest
|
|
|
|
# Get the goland and alpine versions from the docker images.
|
|
goversion=$(podman run golang:1-alpine go version | cut -f3 -d' ')
|
|
alpineversion=alpine$(podman run alpine:latest cat /etc/alpine-release)
|
|
# We assume the alpines for all platforms have the same version...
|
|
echo Building with $goversion and $alpineversion
|
|
|
|
# We build the images individually so we can pass goos and goarch ourselves,
|
|
# needed because the platform in "FROM --platform <image>" in the first stage
|
|
# seems to override the TARGET* variables.
|
|
test -d empty || mkdir empty
|
|
(podman manifest rm moxmail/mox:$moxversion-$goversion-$alpineversion || exit 0)
|
|
for platform in $(echo $platforms | sed 's/,/ /g'); do
|
|
goos=$(echo $platform | sed 's,/.*$,,')
|
|
goarch=$(echo $platform | sed 's,^.*/,,')
|
|
podman build --platform $platform -f Dockerfile.release -v $HOME/go/pkg/sumdb:/go/pkg/sumbd:ro --build-arg goos=$goos --build-arg goarch=$goarch --build-arg moxversion=$moxversion --manifest moxmail/mox:$moxversion-$goversion-$alpineversion empty
|
|
done
|
|
|
|
cat <<EOF
|
|
|
|
# Suggested commands to push images:
|
|
|
|
podman manifest push --all moxmail/mox:$moxversion-$goversion-$alpineversion docker.io/moxmail/mox:$moxversion-$goversion-$alpineversion
|
|
|
|
podman manifest push --all moxmail/mox:$moxversion-$goversion-$alpineversion docker.io/moxmail/mox:$moxversion
|
|
podman manifest push --all moxmail/mox:$moxversion-$goversion-$alpineversion docker.io/moxmail/mox:latest
|
|
EOF
|