osmith has abandoned this change. ( https://gerrit.osmocom.org/c/osmo-bsc-nat/+/31416 )
Change subject: DO NOT MERGE: test struct_endianness CI
......................................................................
Abandoned
--
To view, visit https://gerrit.osmocom.org/c/osmo-bsc-nat/+/31416
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-bsc-nat
Gerrit-Branch: master
Gerrit-Change-Id: I91625b54ab2698504340f627c8473e2967868f6d
Gerrit-Change-Number: 31416
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-MessageType: abandon
osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmocom-bb/+/31402 )
Change subject: Cosmetic: fix encoding of ui-experiment/font.h
......................................................................
Cosmetic: fix encoding of ui-experiment/font.h
Remove characters 0x80 - 0xff from comments in this source file, as
they can't be parsed as UTF-8. This causes struct_endianness.py to
error on the file, git and gerrit can't display a proper diff and treat
it as binary file, etc.
Related: OS#5884
Change-Id: I0daebccf819595ee64fb4c9713a4f0ce219c58be
---
M src/target/ui-experiment/font.h
1 file changed, 15 insertions(+), 0 deletions(-)
Approvals:
pespin: Looks good to me, but someone else must approve
fixeria: Looks good to me, approved
Jenkins Builder: Verified
diff --git a/src/target/ui-experiment/font.h b/src/target/ui-experiment/font.h
index 5dc6eae..c75a0f8 100644
--- a/src/target/ui-experiment/font.h
+++ b/src/target/ui-experiment/font.h
Binary files differ
--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/31402
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: I0daebccf819595ee64fb4c9713a4f0ce219c58be
Gerrit-Change-Number: 31402
Gerrit-PatchSet: 2
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: steve-m <steve(a)steve-m.de>
Gerrit-CC: laforge <laforge(a)osmocom.org>
Gerrit-MessageType: merged
fixeria has submitted this change. ( https://gerrit.osmocom.org/c/docker-playground/+/31411 )
Change subject: osmo-uecups-latest: install missing iputils-ping
......................................................................
osmo-uecups-latest: install missing iputils-ping
ping is needed for ttcn3-pgw-test. In the case of osmo-uecups-master
it's available from the parent $DISTRO-build image, but for the -latest
it needs to be installed by the inherited image itself.
Change-Id: Ia1b9124f09203c7dcf6d26dee78b09d5a139a04f
Related: OS#5913
---
M osmo-uecups-latest/Dockerfile
1 file changed, 15 insertions(+), 0 deletions(-)
Approvals:
Jenkins Builder: Verified
osmith: Looks good to me, but someone else must approve
pespin: Looks good to me, but someone else must approve
fixeria: Looks good to me, approved
diff --git a/osmo-uecups-latest/Dockerfile b/osmo-uecups-latest/Dockerfile
index a46ce06..9546720 100644
--- a/osmo-uecups-latest/Dockerfile
+++ b/osmo-uecups-latest/Dockerfile
@@ -9,6 +9,7 @@
debian*) \
apt-get update && \
apt-get install -y --no-install-recommends \
+ iputils-ping \
osmo-uecups && \
apt-get clean \
;; \
--
To view, visit https://gerrit.osmocom.org/c/docker-playground/+/31411
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: docker-playground
Gerrit-Branch: master
Gerrit-Change-Id: Ia1b9124f09203c7dcf6d26dee78b09d5a139a04f
Gerrit-Change-Number: 31411
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged
fixeria has submitted this change. ( https://gerrit.osmocom.org/c/docker-playground/+/31413 )
Change subject: open5gs-latest: add osmocom user for ttcn3-pgw-test
......................................................................
open5gs-latest: add osmocom user for ttcn3-pgw-test
In ttcn3-pgw-test we're running open5gs-upfd as a non-root user.
We do have this user in open5gs-master, but not in open5gs-latest.
Change-Id: I9139fc52fa6973cf495559d3c4202d9f804a2079
Related: OS#5913
---
M open5gs-latest/Dockerfile
1 file changed, 19 insertions(+), 0 deletions(-)
Approvals:
Jenkins Builder: Verified
pespin: Looks good to me, but someone else must approve
osmith: Looks good to me, approved
diff --git a/open5gs-latest/Dockerfile b/open5gs-latest/Dockerfile
index 870a170..7c385e2 100644
--- a/open5gs-latest/Dockerfile
+++ b/open5gs-latest/Dockerfile
@@ -30,3 +30,9 @@
apt-get install -y \
mongodb-org \
open5gs
+
+# create a user
+ARG username=osmocom
+RUN useradd -m --uid=1000 ${username} && \
+ echo "${username} ALL=(root) NOPASSWD:ALL" > /etc/sudoers.d/${username} && \
+ chmod 0440 /etc/sudoers.d/${username}
--
To view, visit https://gerrit.osmocom.org/c/docker-playground/+/31413
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: docker-playground
Gerrit-Branch: master
Gerrit-Change-Id: I9139fc52fa6973cf495559d3c4202d9f804a2079
Gerrit-Change-Number: 31413
Gerrit-PatchSet: 2
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged