Attention is currently required from: pespin.
Hello Jenkins Builder, laforge,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/docker-playground/+/28604
to look at the new patch set (#2).
Change subject: ttcn3-cbc: Update osmo-cbc.cfg to test SBc-AP
......................................................................
ttcn3-cbc: Update osmo-cbc.cfg to test SBc-AP
Requires: osmo-ttcn3-hacks.git Ia6743e0a3e7974a5f2dd3ecf74ec331f646f6bc2
Requires: osmo-cbc.git Iceea1a2281f8784d64b4227601d8757b7ae39176
Change-Id: Ie6fb464890c4b7b9816ef8602633df107e5e61ee
---
M ttcn3-cbc-test/osmo-cbc.cfg
1 file changed, 11 insertions(+), 23 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/docker-playground refs/changes/04/28604/2
--
To view, visit https://gerrit.osmocom.org/c/docker-playground/+/28604
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: docker-playground
Gerrit-Branch: master
Gerrit-Change-Id: Ie6fb464890c4b7b9816ef8602633df107e5e61ee
Gerrit-Change-Number: 28604
Gerrit-PatchSet: 2
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: newpatchset
osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/28637 )
Change subject: scripts: osmo_obs_add_rpm_spec: fix tar pattern
......................................................................
scripts: osmo_obs_add_rpm_spec: fix tar pattern
Fix the pattern that gets the source tarball with ls in order to update
the "Source:" line in the spec file. The previous assumption was that it
would always match:
ls -1 "${name}_"*".tar."*
But this isn't the case anymore since a spec file was added to
libosmo-dsp where the package name ($name) is libosmo-dsp, but the
tarball doesn't have the minus character:
libosmodsp_0.4.0.1.d7d9.202207150002.tar.xz
Therefore just change the pattern to:
ls -1 *_*.tar.*
We can do this because there is always only one tarball in the directory
and we wouldn't use ".tar." in a package name.
Fixes: OS#5619
Change-Id: Ic704f480102ab6f90f3936a3be30e3020402e750
---
M scripts/common-obs.sh
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
Jenkins Builder: Verified
osmith: Looks good to me, approved
diff --git a/scripts/common-obs.sh b/scripts/common-obs.sh
index 4de2c55..6f96e95 100644
--- a/scripts/common-obs.sh
+++ b/scripts/common-obs.sh
@@ -162,7 +162,7 @@
fi
# Set source file
- tarball="$(cd "$oscdir" && ls -1 "${name}_"*".tar."*)"
+ tarball="$(cd "$oscdir" && ls -1 *_*.tar.*)"
sed -i "s/^Source:.*/Source: $tarball/g" "$spec"
osc add "$spec"
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/28637
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: Ic704f480102ab6f90f3936a3be30e3020402e750
Gerrit-Change-Number: 28637
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-MessageType: merged
osmith has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/28637 )
Change subject: scripts: osmo_obs_add_rpm_spec: fix tar pattern
......................................................................
Patch Set 1: Code-Review+2
(1 comment)
Patchset:
PS1:
Trivial patch to resolve an urgent issue, I'll merge it now. I verified that it works by pushing all packages to a separate OBS namespace.
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/28637
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: Ic704f480102ab6f90f3936a3be30e3020402e750
Gerrit-Change-Number: 28637
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Comment-Date: Mon, 18 Jul 2022 08:58:22 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ci/+/28637 )
Change subject: scripts: osmo_obs_add_rpm_spec: fix tar pattern
......................................................................
scripts: osmo_obs_add_rpm_spec: fix tar pattern
Fix the pattern that gets the source tarball with ls in order to update
the "Source:" line in the spec file. The previous assumption was that it
would always match:
ls -1 "${name}_"*".tar."*
But this isn't the case anymore since a spec file was added to
libosmo-dsp where the package name ($name) is libosmo-dsp, but the
tarball doesn't have the minus character:
libosmodsp_0.4.0.1.d7d9.202207150002.tar.xz
Therefore just change the pattern to:
ls -1 *_*.tar.*
We can do this because there is always only one tarball in the directory
and we wouldn't use ".tar." in a package name.
Fixes: OS#5619
Change-Id: Ic704f480102ab6f90f3936a3be30e3020402e750
---
M scripts/common-obs.sh
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/37/28637/1
diff --git a/scripts/common-obs.sh b/scripts/common-obs.sh
index 4de2c55..6f96e95 100644
--- a/scripts/common-obs.sh
+++ b/scripts/common-obs.sh
@@ -162,7 +162,7 @@
fi
# Set source file
- tarball="$(cd "$oscdir" && ls -1 "${name}_"*".tar."*)"
+ tarball="$(cd "$oscdir" && ls -1 *_*.tar.*)"
sed -i "s/^Source:.*/Source: $tarball/g" "$spec"
osc add "$spec"
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/28637
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: Ic704f480102ab6f90f3936a3be30e3020402e750
Gerrit-Change-Number: 28637
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-MessageType: newchange