Unverified Commit 302e1d3c authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

publish-docker: add cotnrol commands for didcated ARM64 build host

parent 554fff99
Loading
Loading
Loading
Loading
+17 −1
Original line number Diff line number Diff line
@@ -5,9 +5,25 @@ set -e
VERSION="$1"
test -n "${VERSION}"

mosquitto_pub -h mqtt -t dmap/set/structure/0003 -m usbc_voice=1

git checkout main
git pull
git checkout "${VERSION}"
git submodule update --init

docker buildx build --push --no-cache --platform linux/amd64,linux/arm64 --tag derfnull/hafas:${VERSION} --tag derfnull/hafas:latest --build-arg=dbf_version=${VERSION} .
echo -n 'Waiting for ARM64 build host to become ready '
while ! test "$(docker buildx inspect mybuild | fgrep -c running)" = 2; do
	echo -n .
	sleep 5
done
echo

docker buildx build --push --no-cache --platform linux/amd64,linux/arm64 \
	--tag derfnull/hafas:${VERSION} --tag derfnull/hafas:latest \
	.

echo 'Turning off ARM64 build host ...'
ssh voice 'sudo poweroff'
sleep 30
mosquitto_pub -h mqtt -t dmap/set/structure/0003 -m usbc_voice=0