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