aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2022-12-08 12:38:03 +0100
committerOliver Smith <osmith@sysmocom.de>2022-12-08 13:41:56 +0100
commitafc2017b5b407ff45831e855005c318396e56ecf (patch)
treed303e15c17598f7f2b179fa9c3cbf7dea949b73a
parent2d30589244f7a70912603fe0093eb54d98b28dab (diff)
repo-install-test: print osmocom_packages_all.txt
While I'm developing this, Jenkins is currently failing here. Make it easier to debug this by printing the file contents. Related: OS#5365 Change-Id: Ifbf4ca7f49c1f4441f84695aea0936515e01ffd4
-rwxr-xr-xscripts/repo-install-test/run-inside.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/repo-install-test/run-inside.sh b/scripts/repo-install-test/run-inside.sh
index 7ba69ac..614fb8b 100755
--- a/scripts/repo-install-test/run-inside.sh
+++ b/scripts/repo-install-test/run-inside.sh
@@ -321,6 +321,8 @@ install_repo_packages_debian() {
"?origin(.*$PROJ.*) ?architecture(native)" | sort \
> osmocom_packages_all.txt
+ cat osmocom_packages_all.txt
+
filter_packages_txt
apt install -y $(cat osmocom_packages.txt)
}
@@ -336,6 +338,8 @@ install_repo_packages_centos() {
--qf="%{name}" \
> osmocom_packages_all.txt
+ cat osmocom_packages_all.txt
+
filter_packages_txt
dnf install -y $(cat osmocom_packages.txt)
}