aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2021-06-16 15:34:16 +0200
committerOliver Smith <osmith@sysmocom.de>2021-06-16 15:37:13 +0200
commit1bc1947974079cb339423c9eceb4b310bd4ede84 (patch)
tree3571fdee47aed993d2acf3391cdf1321cce91a52
parentf404962d61ef7e5f79822d1ec1e92b378afb1aad (diff)
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
-rwxr-xr-xscripts/osmo-ci-docker-rebuild.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/osmo-ci-docker-rebuild.sh b/scripts/osmo-ci-docker-rebuild.sh
index 87c943f..73b3508 100755
--- a/scripts/osmo-ci-docker-rebuild.sh
+++ b/scripts/osmo-ci-docker-rebuild.sh
@@ -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