Skip to content

Commit

Permalink
Run HPC-GAP tests with minimal packages.
Browse files Browse the repository at this point in the history
This avoids some spurious errors caused by packages that are not
threadsafe.
  • Loading branch information
rbehrends committed Oct 21, 2019
1 parent cd73786 commit 15d1803
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion etc/ci-prepare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,13 @@ then
# On the upside, it's good to test that, too!
make bootstrap-pkg-minimal DOWNLOAD="$WGET"
else
make bootstrap-pkg-full DOWNLOAD="$WGET"
if [[ $HPCGAP = yes ]]
then
# Some packages in the full set do not work with HPC-GAP
make bootstrap-pkg-minimal DOWNLOAD="$WGET"
else
make bootstrap-pkg-full DOWNLOAD="$WGET"
fi
fi

# check that GAP is at least able to start
Expand Down

0 comments on commit 15d1803

Please sign in to comment.