toxcore/.travis.yml
irungentoo 79aa715514 First part of DHT hardening done.
Added crypto to the DHT communications.

This defeats completely the first attack mentioned in
docs/DHT_hardening.

Also updated the build system to build the latest test (it links it with
libsodium)
2013-07-12 16:27:19 -04:00

27 lines
414 B
YAML

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 ..
script:
- cmake CMakeLists.txt
- make -j3
notifications:
email: false
irc:
channels:
- "chat.freenode.net#InsertProjectNameHere"
on_success: always
on_failure: always