mirror of
https://github.com/zeromq/libzmq.git
synced 2025-01-15 18:38:00 +08:00
7849d02214
ldconfig is not available on OSX, so Travis CI build fails
17 lines
405 B
YAML
17 lines
405 B
YAML
# Travis CI script
|
|
|
|
language: c
|
|
|
|
# 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
|