mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-23 02:33:02 +01:00
Merge pull request #6 from Tox/add-widechar-checks
Added travis integration
This commit is contained in:
commit
3629b702c3
47
.travis.yml
Normal file
47
.travis.yml
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
language: c
|
||||||
|
compiler:
|
||||||
|
- gcc
|
||||||
|
- clang
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
# installing libsodium, needed for Core
|
||||||
|
- git clone git://github.com/jedisct1/libsodium.git
|
||||||
|
- cd libsodium
|
||||||
|
- git checkout tags/0.4.2
|
||||||
|
- ./autogen.sh
|
||||||
|
- ./configure && make check -j3
|
||||||
|
- sudo make install
|
||||||
|
- cd ..
|
||||||
|
# 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
|
||||||
|
# installing sphinx, needed for documentation
|
||||||
|
- sudo apt-get install python-sphinx
|
||||||
|
# installing check, needed for unit tests
|
||||||
|
- sudo apt-get install check
|
||||||
|
|
||||||
|
- git clone https://github.com/irungentoo/ProjectTox-Core.git toxcore
|
||||||
|
- cd toxcore
|
||||||
|
- mkdir build
|
||||||
|
- cd build
|
||||||
|
- cmake ..
|
||||||
|
- make -j2
|
||||||
|
- cd ../..
|
||||||
|
script:
|
||||||
|
- autoreconf -i
|
||||||
|
- ./configure --with-libtoxcore-headers=$TRAVIS_BUILD_DIR/toxcore/core --with-libtoxcore-libs=$TRAVIS_BUILD_DIR/toxcore/build/core
|
||||||
|
- make -j2
|
||||||
|
notifications:
|
||||||
|
email: false
|
||||||
|
|
||||||
|
irc:
|
||||||
|
channels:
|
||||||
|
- "chat.freenode.net#tox-dev"
|
||||||
|
on_success: always
|
||||||
|
on_failure: always
|
Loading…
Reference in New Issue
Block a user