]> granicus.if.org Git - graphviz/commitdiff
install Graphviz dev libraries during CI testing
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 5 Jul 2020 18:53:42 +0000 (11:53 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 7 Jul 2020 00:11:25 +0000 (17:11 -0700)
This allows us to begin testing code that compiles and links against Graphviz
libraries.

ci/test.sh

index 5f6e9e02c2a00935e1ee4b37515f1a046e8d0fe2..8db4df30fc3bbb2b9ba58a324106881827fae18c 100755 (executable)
@@ -16,11 +16,13 @@ DIR=Packages/${COLLECTION}/${ID}/${VERSION_ID}
 ARCH=$( uname -m )
 if [ "${ID_LIKE}" = "debian" ]; then
     apt install ./${DIR}/os/${ARCH}/libgraphviz4_${GV_VERSION}-1_amd64.deb
+    apt install ./${DIR}/os/${ARCH}/libgraphviz-dev_${GV_VERSION}-1_amd64.deb
     apt install ./${DIR}/os/${ARCH}/graphviz_${GV_VERSION}-1_amd64.deb
 else
     rpm --install --force \
         ${DIR}/os/${ARCH}/graphviz-${GV_VERSION}*.rpm \
         ${DIR}/os/${ARCH}/graphviz-libs-${GV_VERSION}*.rpm \
+        ${DIR}/os/${ARCH}/graphviz-devel-${GV_VERSION}*.rpm \
         ${DIR}/os/${ARCH}/graphviz-plugins-core-${GV_VERSION}*.rpm \
         ${DIR}/os/${ARCH}/graphviz-plugins-x-${GV_VERSION}*.rpm \
         ${DIR}/os/${ARCH}/graphviz-x-${GV_VERSION}*.rpm \