fix travis builds

This commit is contained in:
Günter Obiltschnig 2020-02-08 21:29:28 +01:00
parent ee9ce376e3
commit 290d9b3538
3 changed files with 7 additions and 4 deletions

View File

@ -157,7 +157,7 @@ jobs:
- libmysqlclient-dev
compiler: gcc
script:
- ./configure --everything --omit=PDF && make all -s -j2 && sudo make install
- ./configure --everything --omit=PDF,Redis,MongoDB && make all -s -j2 && sudo make install
- sudo -s ./travis/runtests.sh
- name: macOS (clang, make)
@ -167,9 +167,8 @@ jobs:
homebrew:
packages:
- openssl
- mysql-client
script:
- ./configure --everything --omit=PDF,Data/ODBC,Data/PostgreSQL && make all -s -j2 && sudo make install
- ./configure --everything --no-prefix --omit=PDF,Data/MySQL,Data/ODBC,Data/PostgreSQL && make all -s -j2 && sudo make install
- sudo -s ./travis/runtests.sh
- name: Linux (gcc, cmake)

View File

@ -15,3 +15,6 @@ N7CppUnit10TestCallerI15FileChannelTestEE.testPurgeAge
N7CppUnit10TestCallerI8FileTestEE.testFileAttributes2
N7CppUnit10TestCallerI14ICMPSocketTestEE.testSendToReceiveFrom
N7CppUnit10TestCallerI22HTTPSClientSessionTestEE.testCachedSession
N7CppUnit10TestCallerI17SocketAddressTestEE.testSocketAddress
N7CppUnit10TestCallerI7DNSTestEE.testHostByName
N7CppUnit10TestCallerI7DNSTestEE.testHostByAddress

View File

@ -2,7 +2,8 @@ set -ev
osname=`uname`
osarch=`uname -m`
export POCO_BASE=`pwd`
export EXCLUDE_TESTS="Data/MySQL Data/ODBC MongoDB PDF"
export EXCLUDE_TESTS="Data/MySQL Data/ODBC Data/PostgreSQL MongoDB PDF"
export PATH=$PATH:.
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:.:$POCO_BASE/lib/$osname/$osarch
export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:.:$POCO_BASE/lib/$osname/$osarch
build/script/runtests.sh