2014-08-12 12:30:43 +02:00
|
|
|
# Travis CI script
|
2013-09-12 12:46:43 +02:00
|
|
|
|
2013-05-21 09:20:39 +02:00
|
|
|
language: c
|
2013-09-12 12:46:43 +02:00
|
|
|
|
|
|
|
# Build required projects first
|
|
|
|
before_script:
|
|
|
|
|
|
|
|
# libsodium
|
|
|
|
- git clone git://github.com/jedisct1/libsodium.git
|
2014-08-12 12:22:17 +02:00
|
|
|
- ( cd libsodium; ./autogen.sh; ./configure; make check; sudo make install; sudo ldconfig )
|
2013-09-12 12:46:43 +02:00
|
|
|
|
2014-08-12 12:30:43 +02:00
|
|
|
# Build and check this project
|
2014-08-12 12:22:17 +02:00
|
|
|
script:
|
2014-10-19 04:23:37 +02:00
|
|
|
- ./autogen.sh && ./configure --with-libsodium=yes && make && make check
|
2014-08-12 12:30:43 +02:00
|
|
|
- sudo make install
|