mirror of
https://github.com/mjl-/mox.git
synced 2024-12-26 00:13:47 +03:00
a9b2bc8cec
when setting up the docker organization account for mox it already felt off. depending on such a party to serve binaries didn't feel great to begin with. after clarifying online discussions of docker's vague announcement of removing free team organizations it was clearly time to move off hub.docker.com. best to self-host. r.xmox.nl is hosted with the new github.com/mjl-/vex. pinging issue #3
55 lines
2.6 KiB
Bash
Executable file
55 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
|
|
((rm -r tmp/gomod || exit 0); mkdir -p tmp/gomod) # fetch modules through goproxy just once
|
|
(podman manifest rm 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 -v $PWD/tmp/gomod:/go/pkg/mod --build-arg goos=$goos --build-arg goarch=$goarch --build-arg moxversion=$moxversion --manifest mox:$moxversion-$goversion-$alpineversion empty
|
|
done
|
|
|
|
cat <<EOF
|
|
|
|
# Suggested commands to push images:
|
|
|
|
podman manifest push --all mox:$moxversion-$goversion-$alpineversion \$host/mox:$moxversion-$goversion-$alpineversion
|
|
|
|
podman manifest push --all mox:$moxversion-$goversion-$alpineversion \$host/mox:$moxversion
|
|
podman manifest push --all mox:$moxversion-$goversion-$alpineversion \$host/mox:latest
|
|
EOF
|