mirror of
https://github.com/zeromq/libzmq.git
synced 2025-07-04 09:37:15 +02:00
commit
9bf88bcc03
@ -10,6 +10,8 @@ env:
|
|||||||
- BUILD_TYPE=default
|
- BUILD_TYPE=default
|
||||||
- BUILD_TYPE=qt-android
|
- BUILD_TYPE=qt-android
|
||||||
|
|
||||||
|
sudo: false
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
# ZMQ stress tests need more open socket (files) than the usual default
|
# ZMQ stress tests need more open socket (files) than the usual default
|
||||||
# On OSX, it seems the way to set the max files limit is constantly changing, so
|
# On OSX, it seems the way to set the max files limit is constantly changing, so
|
||||||
|
18
ci_build.sh
18
ci_build.sh
@ -1,15 +1,27 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -x
|
||||||
|
|
||||||
if [ $BUILD_TYPE == "default" ]; then
|
if [ $BUILD_TYPE == "default" ]; then
|
||||||
|
mkdir tmp
|
||||||
|
BUILD_PREFIX=$PWD/tmp
|
||||||
|
|
||||||
|
CONFIG_OPTS=()
|
||||||
|
CONFIG_OPTS+=("CFLAGS=-I${BUILD_PREFIX}/include")
|
||||||
|
CONFIG_OPTS+=("CPPFLAGS=-I${BUILD_PREFIX}/include")
|
||||||
|
CONFIG_OPTS+=("CXXFLAGS=-I${BUILD_PREFIX}/include")
|
||||||
|
CONFIG_OPTS+=("LDFLAGS=-L${BUILD_PREFIX}/lib")
|
||||||
|
CONFIG_OPTS+=("PKG_CONFIG_PATH=${BUILD_PREFIX}/lib/pkgconfig")
|
||||||
|
CONFIG_OPTS+=("--prefix=${BUILD_PREFIX}")
|
||||||
|
|
||||||
# Build required projects first
|
# Build required projects first
|
||||||
|
|
||||||
# libsodium
|
# libsodium
|
||||||
git clone git://github.com/jedisct1/libsodium.git
|
git clone git://github.com/jedisct1/libsodium.git
|
||||||
( cd libsodium; ./autogen.sh; ./configure; make check; sudo make install;
|
( cd libsodium; ./autogen.sh; ./configure --prefix=$BUILD_PREFIX; make check; make install)
|
||||||
if [ $TRAVIS_OS_NAME != "osx" ] ; then sudo ldconfig ; fi )
|
|
||||||
|
|
||||||
# Build and check this project
|
# Build and check this project
|
||||||
(./autogen.sh && ./configure --with-libsodium=yes && make && make check && sudo make install) || exit 1
|
(./autogen.sh && ./configure "${CONFIG_OPTS[@]}" --with-libsodium=yes && make && make check && make install) || exit 1
|
||||||
else
|
else
|
||||||
cd ./builds/${BUILD_TYPE} && ./ci_build.sh
|
cd ./builds/${BUILD_TYPE} && ./ci_build.sh
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user