This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
srs_andre gerrit-no-reply at lists.osmocom.orgsrs_andre has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-gsm-tester/+/22031 )
Change subject: jenkins-build-srslte.sh: allow custom binaries
......................................................................
jenkins-build-srslte.sh: allow custom binaries
this allows to specify the environmental var
wanted_binaries_bin that will be included in the
trial package. if the variable isn't set, all three
main srsLTE binaries are included
Change-Id: I63f5799328435ce32b5bfd6dae6fd0b37e1e5397
---
M contrib/jenkins-build-srslte.sh
1 file changed, 5 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-gsm-tester refs/changes/31/22031/1
diff --git a/contrib/jenkins-build-srslte.sh b/contrib/jenkins-build-srslte.sh
index 80e4ffc..365c3e4 100755
--- a/contrib/jenkins-build-srslte.sh
+++ b/contrib/jenkins-build-srslte.sh
@@ -1,6 +1,10 @@
#!/bin/sh
set -e -x
+if [ -z "$trial_binaries" ]; then
+ trial_binaries="srsue srsenb srsepc"
+fi
+
base="$PWD"
name="srslte"
git_url="${git_url:-https://github.com/srsLTE}"
@@ -10,4 +14,4 @@
#TODO: make sure libconfig, zeroMQ is installed
build_repo $project_name $configure_opts
-create_bin_tgz "srsue srsenb srsepc"
+create_bin_tgz "$trial_binaries"
--
To view, visit https://gerrit.osmocom.org/c/osmo-gsm-tester/+/22031
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-gsm-tester
Gerrit-Branch: master
Gerrit-Change-Id: I63f5799328435ce32b5bfd6dae6fd0b37e1e5397
Gerrit-Change-Number: 22031
Gerrit-PatchSet: 1
Gerrit-Owner: srs_andre <andre at softwareradiosystems.com>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20210107/8cf18281/attachment.htm>