mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-13 07:47:39 +02:00
Try to get FreeBSD to stop being classified as macOS
Also set things up to use `gmake` instead of `make` since the latter refers to the incompatible BSD Make rather than GNU Make on BSD. Hopefully the alias persists across build steps...
This commit is contained in:
parent
7e5e46c9cc
commit
d4f70e9607
1 changed files with 16 additions and 14 deletions
30
.travis.yml
30
.travis.yml
|
@ -24,6 +24,14 @@ matrix:
|
|||
apt:
|
||||
packages:
|
||||
- libtommath-dev
|
||||
- os: freebsd
|
||||
addons:
|
||||
pkg:
|
||||
packages:
|
||||
- sudo
|
||||
- gmake
|
||||
- libtommath
|
||||
- concurrencykit
|
||||
- os: osx
|
||||
image: xcode8
|
||||
addons:
|
||||
|
@ -38,32 +46,26 @@ matrix:
|
|||
packages:
|
||||
- libtommath
|
||||
- concurrencykit
|
||||
- os: freebsd
|
||||
addons:
|
||||
pkg:
|
||||
packages:
|
||||
- sudo
|
||||
- libtommath
|
||||
- concurrencykit
|
||||
notifications:
|
||||
email: false
|
||||
before_install:
|
||||
- [ "$(uname)" = "FreeBSD" ] || alias gmake=make
|
||||
- |
|
||||
git clone https://github.com/concurrencykit/ck.git ${HOME}/ck
|
||||
cd ${HOME}/ck
|
||||
git checkout 0.6.0
|
||||
./configure PREFIX=/usr
|
||||
make all
|
||||
sudo make install
|
||||
gmake all
|
||||
sudo gmake install
|
||||
if [ "$(uname)" = "Linux" ]; then
|
||||
sudo ldconfig
|
||||
fi
|
||||
- |
|
||||
git clone https://github.com/justinethier/cyclone-bootstrap.git ${HOME}/cyclone-bootstrap
|
||||
cd ${HOME}/cyclone-bootstrap
|
||||
make
|
||||
sudo make install
|
||||
gmake
|
||||
sudo gmake install
|
||||
script:
|
||||
- make
|
||||
- sudo make install
|
||||
- make test
|
||||
- gmake
|
||||
- sudo gmake install
|
||||
- gmake test
|
||||
|
|
Loading…
Add table
Reference in a new issue