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/.
Neels Hofmeyr gerrit-no-reply at lists.osmocom.orgHello Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/775
to look at the new patch set (#2).
jenkins.sh: cosmetic: mark start of main build
Add function 'marker' so we don't repeat the five echos, use in build_dep and
before main build.
Change-Id: I58ab958414eb9e9b0fd7e214103578e5b4aa6ff2
---
M contrib/jenkins.sh
1 file changed, 9 insertions(+), 4 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-iuh refs/changes/75/775/2
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh
index 4b92861..c24bec2 100755
--- a/contrib/jenkins.sh
+++ b/contrib/jenkins.sh
@@ -9,16 +9,20 @@
mkdir "$deps" || true
rm -rf "$inst"
-build_dep() {
- project="$1"
- branch="$2"
+marker() {
set +x
echo
echo
echo
- echo " =============================== $project ==============================="
+ echo " =============================== $@ ==============================="
echo
set -x
+}
+
+build_dep() {
+ project="$1"
+ branch="$2"
+ marker $project
if [ -z "$project" ]; then
echo "internal failure"
exit 1
@@ -49,6 +53,7 @@
# the asn1c binary is used by the 'regen' target below
build_dep asn1c aper-prefix
+marker osmo-iuh
cd "$base"
# Build using the checked-in asn1 code
autoreconf --install --force
--
To view, visit https://gerrit.osmocom.org/775
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I58ab958414eb9e9b0fd7e214103578e5b4aa6ff2
Gerrit-PatchSet: 2
Gerrit-Project: osmo-iuh
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr <nhofmeyr at sysmocom.de>
Gerrit-Reviewer: Jenkins Builder