Skip to content

Commit

Permalink
travis: add datastructures for digraphs
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-mitchell committed Mar 28, 2020
1 parent b55a4fe commit 9840bca
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/travis-build-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ PKGS=( "digraphs" "genss" "io" "orb" )
if [ "$SUITE" == "coverage" ]; then
PKGS+=( "profiling" )
fi
if [ "$PACKAGES" == "latest" ]; then
PKGS+=( "datastructures" )
fi

for PKG in "${PKGS[@]}"; do
cd $GAPROOT/pkg
Expand All @@ -79,7 +82,7 @@ for PKG in "${PKGS[@]}"; do
tar xf $PKG-$VERSION.tar.gz && rm $PKG-$VERSION.tar.gz

if [ -f $PKG-$VERSION/configure ]; then
if [ "$PKG" == "orb" ]; then
if [ "$PKG" == "orb" ] || [ "$PKG" == "datastructures" ]; then
cd $PKG-$VERSION && ./configure && make # orb doesn't accept package flags
else
cd $PKG-$VERSION && ./configure $PKG_FLAGS && make
Expand Down

0 comments on commit 9840bca

Please sign in to comment.