osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/41367?usp=email )
Change subject: OBS: gerrit_binpkgs: print verbose output ......................................................................
OBS: gerrit_binpkgs: print verbose output
Print all shell commands and their output executed by build_srcpkgs.py and build_binpkgs.py, instead of only printing them on error. This is useful to see the output of the scripts downloading dependencies when building sourcepackages.
Change-Id: Ie1dbde603351b1d26b66f3834b645b1f1f5bbfc8 --- M scripts/obs/gerrit_binpkgs.sh 1 file changed, 2 insertions(+), 0 deletions(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, but someone else must approve laforge: Looks good to me, approved
diff --git a/scripts/obs/gerrit_binpkgs.sh b/scripts/obs/gerrit_binpkgs.sh index 34f90c4..c077065 100755 --- a/scripts/obs/gerrit_binpkgs.sh +++ b/scripts/obs/gerrit_binpkgs.sh @@ -50,12 +50,14 @@ --git-skip-fetch \ --git-skip-checkout \ --no-meta \ + --verbose \ "$PROJECT_NAME" || error_exit
echo ":: Building the binary packages" "$SCRIPTS_OBS_DIR"/build_binpkg.py \ --docker "$DISTRO" \ --feed "$FEED" \ + --verbose \ "$PROJECT_NAME" || error_exit
echo ":: Find binary packages in: $SCRIPTS_OBS_DIR/_temp/binpkgs"