mirror of
https://github.com/zeromq/libzmq.git
synced 2025-03-18 09:23:53 +00:00
21 lines
424 B
YAML
21 lines
424 B
YAML
# Travis CI script
|
|
|
|
language: c
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
# Build required projects first
|
|
before_script:
|
|
|
|
# libsodium
|
|
- git clone git://github.com/jedisct1/libsodium.git
|
|
- ( cd libsodium; ./autogen.sh; ./configure; make check; sudo make install;
|
|
if [ $TRAVIS_OS_NAME != "osx" ] ; then sudo ldconfig ; fi )
|
|
|
|
# Build and check this project
|
|
script:
|
|
- ./autogen.sh && ./configure && make && make check
|
|
- sudo make install
|