toxcore/.travis.yml

27 lines
414 B
YAML
Raw Normal View History

2013-06-25 08:56:38 +08:00
language: c
compiler:
- gcc
before_script:
- git clone git://github.com/jedisct1/libsodium.git
- cd libsodium
- ./autogen.sh
- ./configure && make check
- sudo make install
- sudo ldconfig
- cd ..
2013-06-25 08:56:38 +08:00
script:
- cmake CMakeLists.txt
- make -j3
notifications:
email: false
irc:
channels:
- "chat.freenode.net#InsertProjectNameHere"
on_success: always
on_failure: always