Try to allow all platforms to finish successfully

This commit is contained in:
Justin Ethier 2020-11-18 16:21:48 -05:00 committed by GitHub
parent b8f3935cfc
commit 66d2527e3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -60,15 +60,14 @@ before_install:
if [ "$(uname)" != "FreeBSD" ]; then if [ "$(uname)" != "FreeBSD" ]; then
sudo gmake install sudo gmake install
else else
gmake install #gmake install
fi fi
script: script:
- gmake - gmake
- | - |
if [ "$(uname)" != "FreeBSD" ]; then if [ "$(uname)" != "FreeBSD" ]; then
sudo gmake install sudo gmake install
gmake test
else else
gmake install # Can't do anything, TravisCI FreeBSD errors out doing sudo
fi fi
- gmake install
- gmake test