osmo-ci-docker-rebuild: don't build ogt for arm

Don't attempt to build the osmo-gsm-tester docker container on arm. It's
currently causing the update-osmo-ci-on-slaves job to fail on
rpi4-raspbian10build-ansible-*.

Related: https://jenkins.osmocom.org/jenkins/job/update-osmo-ci-on-slaves/label=rpi4-raspbian10build-ansible-1/876/console
Change-Id: Ic30de69d318927d5c142f8212eefa3a53037ef25
This commit is contained in:
Oliver Smith 2021-06-16 15:34:16 +02:00
parent f404962d61
commit 1bc1947974
1 changed files with 5 additions and 1 deletions

View File

@ -6,4 +6,8 @@ docker_images_require \
"debian-stretch-jenkins" \
"debian-buster-jenkins" \
"debian-buster-erlang" \
"osmo-gsm-tester"
if [ "$(arch)" = "x86_64" ]; then
docker_images_require \
"osmo-gsm-tester"
fi