mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-20 14:19:17 +02:00
Update .travis.yml
This commit is contained in:
parent
a960be0526
commit
fb5f3c023c
1 changed files with 13 additions and 9 deletions
18
.travis.yml
18
.travis.yml
|
@ -28,7 +28,7 @@ matrix:
|
||||||
addons:
|
addons:
|
||||||
pkg:
|
pkg:
|
||||||
packages:
|
packages:
|
||||||
# - sudo
|
- sudo
|
||||||
- gmake
|
- gmake
|
||||||
- libtommath
|
- libtommath
|
||||||
- concurrencykit
|
- concurrencykit
|
||||||
|
@ -37,8 +37,7 @@ notifications:
|
||||||
before_install:
|
before_install:
|
||||||
- |
|
- |
|
||||||
if [ "$(uname)" != "FreeBSD" ]; then
|
if [ "$(uname)" != "FreeBSD" ]; then
|
||||||
#sudo ln -s /usr/bin/make /usr/bin/gmake
|
sudo ln -s /usr/bin/make /usr/bin/gmake
|
||||||
ln -s /usr/bin/make /usr/bin/gmake
|
|
||||||
fi
|
fi
|
||||||
- |
|
- |
|
||||||
git clone https://github.com/concurrencykit/ck.git ${HOME}/ck
|
git clone https://github.com/concurrencykit/ck.git ${HOME}/ck
|
||||||
|
@ -46,18 +45,23 @@ before_install:
|
||||||
git checkout 0.6.0
|
git checkout 0.6.0
|
||||||
./configure PREFIX=/usr
|
./configure PREFIX=/usr
|
||||||
gmake all
|
gmake all
|
||||||
#sudo gmake install
|
if [ "$(uname)" != "FreeBSD" ]; then
|
||||||
|
sudo gmake install
|
||||||
|
else
|
||||||
gmake install
|
gmake install
|
||||||
|
fi
|
||||||
if [ "$(uname)" = "Linux" ]; then
|
if [ "$(uname)" = "Linux" ]; then
|
||||||
#sudo ldconfig
|
sudo ldconfig
|
||||||
ldconfig
|
|
||||||
fi
|
fi
|
||||||
- |
|
- |
|
||||||
git clone https://github.com/justinethier/cyclone-bootstrap.git ${HOME}/cyclone-bootstrap
|
git clone https://github.com/justinethier/cyclone-bootstrap.git ${HOME}/cyclone-bootstrap
|
||||||
cd ${HOME}/cyclone-bootstrap
|
cd ${HOME}/cyclone-bootstrap
|
||||||
gmake
|
gmake
|
||||||
#sudo gmake install
|
if [ "$(uname)" != "FreeBSD" ]; then
|
||||||
|
sudo gmake install
|
||||||
|
else
|
||||||
gmake install
|
gmake install
|
||||||
|
fi
|
||||||
script:
|
script:
|
||||||
- gmake
|
- gmake
|
||||||
#- sudo gmake install
|
#- sudo gmake install
|
||||||
|
|
Loading…
Add table
Reference in a new issue