osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/39937?usp=email )
Change subject: repo-install-test: ignore bladerf packages ......................................................................
repo-install-test: ignore bladerf packages
Fix for this error with debian 10:
Setting up bladerf-fpga-hostedxa9 (0.2019.07) ... Either your FPGA bitstream is missing, or it is out-of-date. Downloading FPGA bitstream from https://www.nuand.com/fpga/v0.11.0/hostedxA9.rbf... --2025-04-07 02:41:35-- https://www.nuand.com/fpga/v0.11.0/hostedxA9.rbf Resolving www.nuand.com (www.nuand.com)... 172.67.69.95, 104.26.13.238, 104.26.12.238, ... Connecting to www.nuand.com (www.nuand.com)|172.67.69.95|:443... connected. HTTP request sent, awaiting response... 403 Forbidden 2025-04-07 02:41:36 ERROR 403: Forbidden.
Change-Id: I9e40c83f44cbbcc500967a89bb9fbafe17849eae --- M scripts/repo-install-test/run-inside.sh 1 file changed, 5 insertions(+), 0 deletions(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, but someone else must approve fixeria: Looks good to me, approved
diff --git a/scripts/repo-install-test/run-inside.sh b/scripts/repo-install-test/run-inside.sh index 425e49e..b76f4dc 100755 --- a/scripts/repo-install-test/run-inside.sh +++ b/scripts/repo-install-test/run-inside.sh @@ -344,6 +344,11 @@ nftables-devel) ;; python3-nftables) ;;
+ # Bladerf is only relevant for building osmo-trx on debian 10 + # (OS#6409). Don't install the bladerf packages directly in + # this test as downloading FPGA bitstream fails. + *bladerf*) ;; + # All other packages are not filtered *) echo "$i" ;; esac