toxcore/.travis.yml

45 lines
995 B
YAML
Raw Normal View History

2013-06-24 20:56:38 -04:00
language: c
compiler:
- gcc
2013-07-17 18:19:41 -04:00
- clang
2013-06-24 20:56:38 -04:00
before_script:
2013-07-23 15:41:05 -04:00
# installing libsodium, needed for Core
- git clone git://github.com/jedisct1/libsodium.git
- cd libsodium
2013-07-12 18:31:57 -04:00
- git checkout tags/0.4.2
- ./autogen.sh
- ./configure && make check -j3
2013-07-12 18:31:57 -04:00
- sudo make install
- cd ..
2013-07-23 15:41:05 -04:00
# installing libconfig, needed for DHT_bootstrap_daemon
- wget http://www.hyperrealm.com/libconfig/libconfig-1.4.9.tar.gz
- tar -xvzf libconfig-1.4.9.tar.gz
- cd libconfig-1.4.9
- ./configure && make -j3
- sudo make install
- cd ..
# creating librarys' links and updating cache
- sudo ldconfig
2013-08-01 22:35:49 +02:00
# installing sphinx, needed for documentation
- sudo apt-get install python-sphinx
# installing check, needed for unit tests
- sudo apt-get install check
2013-06-24 20:56:38 -04:00
script:
- mkdir build && cd build
- cmake ..
- make -j3
2013-08-08 13:04:48 +02:00
- make test
2013-08-01 22:35:49 +02:00
# build docs separately
- make docs
2013-06-24 20:56:38 -04:00
notifications:
email: false
2013-07-12 18:31:57 -04:00
2013-06-24 20:56:38 -04:00
irc:
channels:
2013-07-29 15:34:28 -04:00
- "chat.freenode.net#tox-dev"
2013-06-24 20:56:38 -04:00
on_success: always
on_failure: always