]> granicus.if.org Git - graphviz/commitdiff
CI: output more information when installing RPMs
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 12 Nov 2022 19:08:06 +0000 (11:08 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 13 Nov 2022 22:02:49 +0000 (14:02 -0800)
This was useful in debugging rpath problems, informing the upcoming commits. So
it seems wise to have this always on.

ci/install-packages.sh

index 1ceacfa5fa35856d3933e789e72e1cf7d0220708..0da7ef3cb89b3c2125c168fe2f3d4ac75e2cb06e 100755 (executable)
@@ -38,7 +38,7 @@ if [ "${build_system}" = "cmake" ]; then
         unzip ${DIR}/Graphviz-${GV_VERSION}-Darwin.zip
         cp -rp Graphviz-${GV_VERSION}-Darwin/* /usr/local
     else
-        rpm --install --force ${DIR}/graphviz-${GV_VERSION}-cmake.rpm
+        rpm --install --force -vv ${DIR}/graphviz-${GV_VERSION}-cmake.rpm
     fi
 else
     if [ "${ID_LIKE:-}" = "debian" ]; then
@@ -51,6 +51,6 @@ else
         cp -rp build/* /usr/local
     else
         tar xvf ${DIR}/graphviz-${GV_VERSION}-rpms.tar.xz
-        rpm --install --force graphviz-*${GV_VERSION}*.rpm
+        rpm --install --force -vv graphviz-*${GV_VERSION}*.rpm
     fi
 fi