toxcore/.travis.yml

27 lines
443 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
2013-07-13 06:31:57 +08:00
- git checkout tags/0.4.2
- ./autogen.sh
2013-07-13 06:31:57 +08:00
- ./configure && make -j3 check
- sudo make install
- sudo ldconfig
- cd ..
2013-06-25 08:56:38 +08:00
script:
2013-07-13 06:31:57 +08:00
- cmake CMakeLists.txt
- make -j3
2013-06-25 08:56:38 +08:00
notifications:
email: false
2013-07-13 06:31:57 +08:00
2013-06-25 08:56:38 +08:00
irc:
channels:
- "chat.freenode.net#InsertProjectNameHere"
on_success: always
on_failure: always