Attention is currently required from: osmith, pespin.
osmith has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/31045 )
Change subject: jobs/master,gerrit: use minimal image for arm
......................................................................
Set Ready For Review
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/31045
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I73e62fbbf93824c0d37963039de4e00f26a43cbe
Gerrit-Change-Number: 31045
Gerrit-PatchSet: 3
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: osmith <osmith(a)sysmocom.de>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Comment-Date: Mon, 23 Jan 2023 13:07:39 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Hello Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/osmo-ci/+/31045
to look at the new patch set (#2).
Change subject: scripts/docker-rebuild: use minimal image for arm
......................................................................
scripts/docker-rebuild: use minimal image for arm
Building debian-buster-jenkins on the raspberry pis may take > 1h,
depending on what changed. It has a lot of things we don't use, so build
a minimal image on the rpis instead.
Closes: OS#5863
Depends: docker-playground I4fb4b48b233acaef815c4c27ec6f17f12cfe836b
Change-Id: I73e62fbbf93824c0d37963039de4e00f26a43cbe
---
M scripts/osmo-ci-docker-rebuild.sh
1 file changed, 10 insertions(+), 5 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/45/31045/2
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/31045
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I73e62fbbf93824c0d37963039de4e00f26a43cbe
Gerrit-Change-Number: 31045
Gerrit-PatchSet: 2
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-MessageType: newpatchset
Hello Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/docker-playground/+/31044
to look at the new patch set (#2).
Change subject: debian-buster-jenkins-arm: new image
......................................................................
debian-buster-jenkins-arm: new image
Add a minimal image to use on the raspberry pis, so it doesn't need to
spend 1-2 hours building debian-buster-jenkins on the raspberry pis,
full of things we don't actually use there.
I've verified that osmo-bts, osmo-pcu, osmo-trx build with this image
(the only projects which we build on the rpis).
Related: OS#5863
Change-Id: I4fb4b48b233acaef815c4c27ec6f17f12cfe836b
---
A debian-buster-jenkins-arm/Dockerfile
A debian-buster-jenkins-arm/Makefile
2 files changed, 81 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/docker-playground refs/changes/44/31044/2
--
To view, visit https://gerrit.osmocom.org/c/docker-playground/+/31044
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: docker-playground
Gerrit-Branch: master
Gerrit-Change-Id: I4fb4b48b233acaef815c4c27ec6f17f12cfe836b
Gerrit-Change-Number: 31044
Gerrit-PatchSet: 2
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-MessageType: newpatchset
osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ci/+/31045 )
Change subject: scripts/docker-rebuild: use minimal image for arm
......................................................................
scripts/docker-rebuild: use minimal image for arm
Building debian-buster-jenkins on the raspberry pis may take > 1h,
depending on what changed. It has a lot of things we don't use, so build
a minimal image on the rpis instead.
Closes: OS#5863
Depends: docker-playground I4fb4b48b233acaef815c4c27ec6f17f12cfe836b
Change-Id: I73e62fbbf93824c0d37963039de4e00f26a43cbe
---
M scripts/osmo-ci-docker-rebuild.sh
1 file changed, 8 insertions(+), 5 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/45/31045/1
diff --git a/scripts/osmo-ci-docker-rebuild.sh b/scripts/osmo-ci-docker-rebuild.sh
index f409d45..85f3e2e 100755
--- a/scripts/osmo-ci-docker-rebuild.sh
+++ b/scripts/osmo-ci-docker-rebuild.sh
@@ -2,11 +2,14 @@
set -e -x
cd "$(dirname "$0")/.."
. scripts/common.sh
-docker_images_require \
- "debian-buster-jenkins"
-if [ "$(arch)" = "x86_64" ]; then
+case "$(arch)" in
+x86_64)
docker_images_require \
"debian-bullseye-erlang" \
- "debian-bullseye-jenkins"
-fi
+ "debian-bullseye-jenkins" \
+ "debian-buster-jenkins"
+arm*)
+ docker_images_require \
+ "debian-buster-jenkins-arm"
+esac
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/31045
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I73e62fbbf93824c0d37963039de4e00f26a43cbe
Gerrit-Change-Number: 31045
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-MessageType: newchange