osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ci/+/40229?usp=email )
Change subject: jobs/master: pass osmo-ci to docker
......................................................................
jobs/master: pass osmo-ci to docker
Let jobs such as the upcoming one for osmo-rp2040-firmware use the
known_hosts file from osmo-ci when uploading binaries. In other jobs
we've copied the known_hosts into the contrib/jenkins.sh file, but let's
try to have it in a central place at least for new jobs.
Related: OS#6784
Change-Id: If5257e7f5e3e2f9e09c52fa558a63e34c276b9a6
---
M jobs/master-builds.yml
1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/29/40229/1
diff --git a/jobs/master-builds.yml b/jobs/master-builds.yml
index 720c159..71ad3ac 100644
--- a/jobs/master-builds.yml
+++ b/jobs/master-builds.yml
@@ -42,6 +42,7 @@
-i \
-u build \
-v $(readlink -f $SSH_AUTH_SOCK):/ssh-agent \
+ -v "$HOME/osmo-ci:/osmo-ci:ro" \
-v "$PWD:/build" \
-v "$HOME/.ssh:/home/build/.ssh:ro" \
docker_run_ccache: |
@@ -68,6 +69,7 @@
-i \
-u build \
-v $(readlink -f $SSH_AUTH_SOCK):/ssh-agent \
+ -v "$HOME/osmo-ci:/osmo-ci:ro" \
-v "$PWD:/build" \
-v "$HOME/.ssh:/home/build/.ssh:ro" \
\
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/40229?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: If5257e7f5e3e2f9e09c52fa558a63e34c276b9a6
Gerrit-Change-Number: 40229
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-rp2040-firmware/+/40227?usp=email )
Change subject: contrib/jenkins: iterate over list of targets
......................................................................
contrib/jenkins: iterate over list of targets
Prepare to add code to upload each target's binary in the next patch.
Remove "set -x" to make the output more readable (the shell code is
simple, no need to be that verbose about it here).
Related: OS#6784
Change-Id: Ic106e298a1e6a4aa01e2c1d87b1d806f90f27b73
---
M CMakeLists.txt
M contrib/jenkins.sh
2 files changed, 14 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-rp2040-firmware refs/changes/27/40227/1
diff --git a/CMakeLists.txt b/CMakeLists.txt
index cb0f06f..94a9b6c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -17,5 +17,6 @@
-Wno-maybe-uninitialized
)
+# When adding new subdirs, make sure to adjust TARGETS in contrib/jenkins.sh!
add_subdirectory(iso7816)
add_subdirectory(osmo-gtm900)
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh
index e24d71a..7f72e1b 100755
--- a/contrib/jenkins.sh
+++ b/contrib/jenkins.sh
@@ -1,7 +1,18 @@
-#!/bin/sh -ex
+#!/bin/sh -e
+TARGETS="
+ iso7816_cardem
+ osmo-gtm900
+"
rm -rf build
mkdir build
cd build
cmake ..
-make -j$(nproc)
+
+for i in $TARGETS; do
+ echo
+ echo "=== make $i ==="
+ echo
+
+ make -j$(nproc) "$i"
+done
--
To view, visit https://gerrit.osmocom.org/c/osmo-rp2040-firmware/+/40227?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: osmo-rp2040-firmware
Gerrit-Branch: master
Gerrit-Change-Id: Ic106e298a1e6a4aa01e2c1d87b1d806f90f27b73
Gerrit-Change-Number: 40227
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Attention is currently required from: iedemam.
Hello Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/osmo-bsc/+/40224?usp=email
to look at the new patch set (#2).
The following approvals got outdated and were removed:
Verified-1 by Jenkins Builder
Change subject: meas_json: add command line option to specify binding ip
......................................................................
meas_json: add command line option to specify binding ip
Change-Id: I3baa80c95b373e3f9483a2778bd195ff99bbdec0
---
M src/utils/meas_json.c
1 file changed, 71 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/24/40224/2
--
To view, visit https://gerrit.osmocom.org/c/osmo-bsc/+/40224?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newpatchset
Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-Change-Id: I3baa80c95b373e3f9483a2778bd195ff99bbdec0
Gerrit-Change-Number: 40224
Gerrit-PatchSet: 2
Gerrit-Owner: iedemam <michael(a)kapsulate.com>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Attention: iedemam <michael(a)kapsulate.com>
Jenkins Builder has posted comments on this change by iedemam. ( https://gerrit.osmocom.org/c/osmo-bsc/+/40224?usp=email )
Change subject: meas_json: add command line option to specify binding ip
......................................................................
Patch Set 1:
(1 comment)
File src/utils/meas_json.c:
Robot Comment from checkpatch (run ID ):
https://gerrit.osmocom.org/c/osmo-bsc/+/40224/comment/98c8b3e4_ec0701ba?usp… :
PS1, Line 191: static void handle_options(int argc, char** argv)
"foo** bar" should be "foo **bar"
--
To view, visit https://gerrit.osmocom.org/c/osmo-bsc/+/40224?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-Change-Id: I3baa80c95b373e3f9483a2778bd195ff99bbdec0
Gerrit-Change-Number: 40224
Gerrit-PatchSet: 1
Gerrit-Owner: iedemam <michael(a)kapsulate.com>
Gerrit-CC: Jenkins Builder
Gerrit-Comment-Date: Tue, 06 May 2025 10:10:58 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No