.travis.yml 465 Bytes
Newer Older
1 2
#   libzmq

3
language: c
4 5 6 7 8

#   Build required projects first
before_script:

#   libsodium
9 10
#   Commit 8d0942 broke installation (sodium.h not found) so for now
#   we're checking out the last good commit.
11 12
- git clone git://github.com/jedisct1/libsodium.git
- cd libsodium
13
- git checkout e2a30a
14 15 16 17 18 19 20 21
- ./autogen.sh
- ./configure && make check
- sudo make install
- sudo ldconfig
- cd ..

#   Build and check libzmq
script: ./autogen.sh && ./configure && make && make check