From a9e9c366b1bcf93acc92cc56dff0dacae8307ed6 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Thu, 2 Nov 2023 15:55:46 +0100 Subject: [PATCH] repo-install-test: ignore limesuite-images Don't attempt to install limesuite-images. It runs a post-install script that downloads files from an external server and fails currently, as there are no images for 23.10. While we have limesuite-images packages in our OBS repository, this is just a side-effect of building limesuite. What we are really interested in is liblimesuite for osmo-trx, as I understand. Add --no-install-recommends to the apt-get install line in install_repo_packages_debian, because the main limesuite package has limesuite-images in recommends and would pull it in otherwise. Change-Id: I237408c805977c831f352a57a301ea45753d1ac1 --- scripts/repo-install-test/blacklist_debian10.txt | 4 ++++ scripts/repo-install-test/blacklist_debian11.txt | 2 ++ scripts/repo-install-test/blacklist_debian12.txt | 2 ++ scripts/repo-install-test/run-inside.sh | 2 +- 4 files changed, 9 insertions(+), 1 deletion(-) diff --git a/scripts/repo-install-test/blacklist_debian10.txt b/scripts/repo-install-test/blacklist_debian10.txt index 6570de6f..93dac750 100644 --- a/scripts/repo-install-test/blacklist_debian10.txt +++ b/scripts/repo-install-test/blacklist_debian10.txt @@ -19,6 +19,10 @@ osmocom-ipaccess-utils-dbg osmocom-nitb osmocom-nitb-dbg +# Not relevant for the test +limesuite-images +limesuite-images23.10 + # SoapySDR is not used anymore (see OS#3542) soapysdr-module-lms7 soapysdr0.6-module-lms7 diff --git a/scripts/repo-install-test/blacklist_debian11.txt b/scripts/repo-install-test/blacklist_debian11.txt index 53187dc5..c962ffca 100644 --- a/scripts/repo-install-test/blacklist_debian11.txt +++ b/scripts/repo-install-test/blacklist_debian11.txt @@ -31,6 +31,8 @@ libulfius2.7 libulfius2.7-dbgsym libyder2.0-dbgsym limesuite-dbgsym +limesuite-images +limesuite-images23.10 soapysdr0.7-module-lms7-dbgsym # Depends on specific verions 0.5.4.38.0847 of rtl-sdr, which we won't install diff --git a/scripts/repo-install-test/blacklist_debian12.txt b/scripts/repo-install-test/blacklist_debian12.txt index b470d449..9b5f5e7c 100644 --- a/scripts/repo-install-test/blacklist_debian12.txt +++ b/scripts/repo-install-test/blacklist_debian12.txt @@ -32,6 +32,8 @@ libulfius2.7 libulfius2.7-dbgsym libyder2.0-dbgsym limesuite-dbgsym +limesuite-images +limesuite-images23.10 soapysdr0.7-module-lms7 soapysdr0.7-module-lms7-dbgsym soapysdr-module-lms7 diff --git a/scripts/repo-install-test/run-inside.sh b/scripts/repo-install-test/run-inside.sh index e08338f5..d7730ffe 100755 --- a/scripts/repo-install-test/run-inside.sh +++ b/scripts/repo-install-test/run-inside.sh @@ -329,7 +329,7 @@ install_repo_packages_debian() { cat osmocom_packages_all.txt filter_packages_txt - apt install -y $(cat osmocom_packages.txt) + apt-get install -y --no-install-recommends $(cat osmocom_packages.txt) } install_repo_packages_centos() {