laforge has submitted this change. ( https://gerrit.osmocom.org/c/docker-playground/+/36366?usp=email )
Change subject: openbts-umts: fix apt: use archive.debian.org
......................................................................
openbts-umts: fix apt: use archive.debian.org
This helps to get access to Debian 8 repositories in 2024.
Change-Id: Ia869476feeb67e2b3313b5d75ca01eaff41597ba
---
M openbts-umts/Dockerfile
A openbts-umts/sources.list
2 files changed, 18 insertions(+), 0 deletions(-)
Approvals:
Jenkins Builder: Verified
laforge: Looks good to me, approved
diff --git a/openbts-umts/Dockerfile b/openbts-umts/Dockerfile
index 0fee2ff..4c357c6 100644
--- a/openbts-umts/Dockerfile
+++ b/openbts-umts/Dockerfile
@@ -4,6 +4,9 @@
FROM debian:jessie
+# https://unix.stackexchange.com/a/755022
+COPY sources.list /etc/apt/sources.list
+
RUN apt-get update && \
apt-get install -y --no-install-recommends \
--no-install-suggests \
diff --git a/openbts-umts/sources.list b/openbts-umts/sources.list
new file mode 100644
index 0000000..2908463
--- /dev/null
+++ b/openbts-umts/sources.list
@@ -0,0 +1,4 @@
+# https://unix.stackexchange.com/a/755022
+# Keys Expired But I ~~Want~~ Need To Hold On To The Past
+deb [trusted=yes] http://archive.debian.org/debian jessie main
+deb [trusted=yes] http://archive.debian.org/debian-security jessie/updates main
--
To view, visit https://gerrit.osmocom.org/c/docker-playground/+/36366?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: docker-playground
Gerrit-Branch: master
Gerrit-Change-Id: Ia869476feeb67e2b3313b5d75ca01eaff41597ba
Gerrit-Change-Number: 36366
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-MessageType: merged
laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/36368?usp=email )
Change subject: jobs/gerrit: libosmocore: run on io_uring nodes
......................................................................
jobs/gerrit: libosmocore: run on io_uring nodes
We have at least one node where the io_uring backend does not work.
Allow running the osmo_io tests with the io_uring backend in CI by
limiting the jenkins nodes used to the ones where we know that io_uring
works.
Related: libosmocore I82db9a15bc483a5447d86352512afaafa2bcfbb6
Related: OS#6405
Change-Id: I9289e2f84edbff95d81bb4a92863865b9563fc6a
---
M jobs/gerrit-verifications.yml
1 file changed, 17 insertions(+), 0 deletions(-)
Approvals:
Jenkins Builder: Verified
laforge: Looks good to me, approved
diff --git a/jobs/gerrit-verifications.yml b/jobs/gerrit-verifications.yml
index 78c25cf..492c06e 100644
--- a/jobs/gerrit-verifications.yml
+++ b/jobs/gerrit-verifications.yml
@@ -116,6 +116,7 @@
- libosmo-sccp
- libosmocore:
+ slave_axis: !!python/tuple [io_uring] # OS#6405
a1_name: arch
a1: !!python/tuple [arm-none-eabi, amd64]
combination_filter: '!(arch=="arm-none-eabi" && label=="FreeBSD_amd64")'
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/36368?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I9289e2f84edbff95d81bb4a92863865b9563fc6a
Gerrit-Change-Number: 36368
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: jolly <andreas(a)eversberg.eu>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-MessageType: merged