Add a Travis script

This commit is contained in:
Frank Denis 2016-08-01 00:53:48 +02:00
parent 32fe65cf08
commit 626e8785b2

25
.travis.yml Normal file
View file

@ -0,0 +1,25 @@
sudo: required
language: c
os:
- linux
compiler:
- gcc
before_script:
- git clone https://github.com/jedisct1/libsodium.git --branch=stable
- cd libsodium
- sudo make install
- sudo ldconfig
- cd ..
- mkdir build
- cd build
- cmake ..
script:
- make -j$(nproc)
matrix:
- fast_finish: true