aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2023-11-02 13:53:03 +0100
committerOliver Smith <osmith@sysmocom.de>2023-11-02 13:53:22 +0100
commit25f74d3d51bcab67ed94e06765d9ec539ccba29e (patch)
treebf90c72f4faa99644c5d9ac0179aa9cade657d27
parent867f2d28fd7edb2fbfa45c7f51a7273ccc4b5ed1 (diff)
Update git tag patterns for rtl-sdr, osmo-fl2k
With the v2.0.0 release of rtl-sdr, it was decided to include the v in the tag pattern again, so adjust it in the related scripts. Adjust osmo-fl2k too in the OBS scripts because there the tag pattern was not set. Change-Id: If1bb64722bd24b0079d2427ea3b0f5b5c87ef7ac
-rw-r--r--scripts/common.sh2
-rw-r--r--scripts/obs/lib/config.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/scripts/common.sh b/scripts/common.sh
index 2bca384..ea106e2 100644
--- a/scripts/common.sh
+++ b/scripts/common.sh
@@ -80,7 +80,7 @@ osmo_git_last_commits_tags() {
local url ret pattern
case "$project" in
- gapk|osmo-fl2k)
+ gapk|osmo-fl2k|rtl-sdr)
pattern='refs/tags/v[0-9.]*$'
;;
*)
diff --git a/scripts/obs/lib/config.py b/scripts/obs/lib/config.py
index 33aced8..4779d77 100644
--- a/scripts/obs/lib/config.py
+++ b/scripts/obs/lib/config.py
@@ -111,6 +111,8 @@ git_latest_tag_pattern_default = "^[0-9]*\\.[0-9]*\\.[0-9]*$"
git_latest_tag_pattern_other = {
"limesuite": "^v[0-9]*\\.[0-9]*\\.[0-9]*$",
"open5gs": "^v[0-9]*\\.[0-9]*\\.[0-9]*$",
+ "osmo-fl2k": "^v[0-9]*\\.[0-9]*\\.[0-9]*$",
+ "rtl-sdr": "^v[0-9]*\\.[0-9]*\\.[0-9]*$",
"wireshark": "^v[0-9]*\\.[0-9]*\\.[0-9a-z]*$",
}