osmith has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ci/+/30509
)
Change subject: repo-install-test: fix osmo-trx-usrp1 check
......................................................................
repo-install-test: fix osmo-trx-usrp1 check
The DISTRO variable is either debian10 or debian11, fix the broken
check. This condition is there in the first place, because we don't
build the usrp1 backend for centos8.
Change-Id: I987f27db257961faf06824df2dcc8f9db1fedccf
Related: OS#5365
---
M scripts/repo-install-test/run-inside.sh
1 file changed, 4 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/09/30509/1
diff --git a/scripts/repo-install-test/run-inside.sh
b/scripts/repo-install-test/run-inside.sh
index d3610cb..6f767bc 100755
--- a/scripts/repo-install-test/run-inside.sh
+++ b/scripts/repo-install-test/run-inside.sh
@@ -393,10 +393,12 @@
osmo-stp \
osmo-trx-uhd
- if [ "$DISTRO" = "debian" ]; then
+ case "$DISTRO" in
+ debian*)
test_binaries_version \
osmo-trx-usrp1
- fi
+ ;;
+ esac
}
services_check() {
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ci/+/30509
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I987f27db257961faf06824df2dcc8f9db1fedccf
Gerrit-Change-Number: 30509
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-MessageType: newchange