Update .travis.yml

Symlink to gmake for non-BSD
This commit is contained in:
Justin Ethier 2020-08-31 11:12:05 -04:00 committed by GitHub
parent 539f5eae90
commit a0e1c2a77c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,7 +8,6 @@ matrix:
addons:
apt:
packages:
- gmake
- libtommath-dev
- os: linux
compiler: clang
@ -16,7 +15,6 @@ matrix:
addons:
apt:
packages:
- gmake
- libtommath-dev
- clang-3.9
- os: linux
@ -25,7 +23,6 @@ matrix:
addons:
apt:
packages:
- gmake
- libtommath-dev
- os: freebsd
addons:
@ -40,15 +37,15 @@ matrix:
addons:
homebrew:
packages:
- gmake
- libtommath
- concurrencykit
notifications:
email: false
before_install:
# - if [ "$(uname)" -ne "FreeBSD" ]; then
# alias gmake=make
# fi
- |
if [ "$(uname)" -ne "FreeBSD" ]; then
sudo ln -s /usr/bin/make /usr/bin/gmake
fi
- |
git clone https://github.com/concurrencykit/ck.git ${HOME}/ck
cd ${HOME}/ck