2013-09-12 12:46:43 +02:00
|
|
|
# libzmq
|
|
|
|
|
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
|
2013-10-13 14:45:58 +02:00
|
|
|
# Commit 8d0942 broke installation (sodium.h not found) so for now
|
|
|
|
# we're checking out the last good commit.
|
2013-09-12 12:46:43 +02:00
|
|
|
- git clone git://github.com/jedisct1/libsodium.git
|
|
|
|
- cd libsodium
|
2013-10-13 14:45:58 +02:00
|
|
|
- git checkout e2a30a
|
2013-09-12 12:46:43 +02:00
|
|
|
- ./autogen.sh
|
|
|
|
- ./configure && make check
|
|
|
|
- sudo make install
|
|
|
|
- sudo ldconfig
|
|
|
|
- cd ..
|
|
|
|
|
|
|
|
# Build and check libzmq
|
|
|
|
script: ./autogen.sh && ./configure && make && make check
|