Update .travis.yml

This commit is contained in:
Justin Ethier 2020-11-18 11:25:20 -05:00 committed by GitHub
parent a960be0526
commit fb5f3c023c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,7 +28,7 @@ matrix:
addons:
pkg:
packages:
# - sudo
- sudo
- gmake
- libtommath
- concurrencykit
@ -37,8 +37,7 @@ notifications:
before_install:
- |
if [ "$(uname)" != "FreeBSD" ]; then
#sudo ln -s /usr/bin/make /usr/bin/gmake
ln -s /usr/bin/make /usr/bin/gmake
sudo ln -s /usr/bin/make /usr/bin/gmake
fi
- |
git clone https://github.com/concurrencykit/ck.git ${HOME}/ck
@ -46,18 +45,23 @@ before_install:
git checkout 0.6.0
./configure PREFIX=/usr
gmake all
#sudo gmake install
gmake install
if [ "$(uname)" != "FreeBSD" ]; then
sudo gmake install
else
gmake install
fi
if [ "$(uname)" = "Linux" ]; then
#sudo ldconfig
ldconfig
sudo ldconfig
fi
- |
git clone https://github.com/justinethier/cyclone-bootstrap.git ${HOME}/cyclone-bootstrap
cd ${HOME}/cyclone-bootstrap
gmake
#sudo gmake install
gmake install
if [ "$(uname)" != "FreeBSD" ]; then
sudo gmake install
else
gmake install
fi
script:
- gmake
#- sudo gmake install