mirror of
https://github.com/pocoproject/poco.git
synced 2025-05-02 15:41:36 +02:00
fix travis builds
This commit is contained in:
parent
ee9ce376e3
commit
290d9b3538
@ -157,7 +157,7 @@ jobs:
|
|||||||
- libmysqlclient-dev
|
- libmysqlclient-dev
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
script:
|
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
|
- sudo -s ./travis/runtests.sh
|
||||||
|
|
||||||
- name: macOS (clang, make)
|
- name: macOS (clang, make)
|
||||||
@ -167,9 +167,8 @@ jobs:
|
|||||||
homebrew:
|
homebrew:
|
||||||
packages:
|
packages:
|
||||||
- openssl
|
- openssl
|
||||||
- mysql-client
|
|
||||||
script:
|
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
|
- sudo -s ./travis/runtests.sh
|
||||||
|
|
||||||
- name: Linux (gcc, cmake)
|
- name: Linux (gcc, cmake)
|
||||||
|
@ -15,3 +15,6 @@ N7CppUnit10TestCallerI15FileChannelTestEE.testPurgeAge
|
|||||||
N7CppUnit10TestCallerI8FileTestEE.testFileAttributes2
|
N7CppUnit10TestCallerI8FileTestEE.testFileAttributes2
|
||||||
N7CppUnit10TestCallerI14ICMPSocketTestEE.testSendToReceiveFrom
|
N7CppUnit10TestCallerI14ICMPSocketTestEE.testSendToReceiveFrom
|
||||||
N7CppUnit10TestCallerI22HTTPSClientSessionTestEE.testCachedSession
|
N7CppUnit10TestCallerI22HTTPSClientSessionTestEE.testCachedSession
|
||||||
|
N7CppUnit10TestCallerI17SocketAddressTestEE.testSocketAddress
|
||||||
|
N7CppUnit10TestCallerI7DNSTestEE.testHostByName
|
||||||
|
N7CppUnit10TestCallerI7DNSTestEE.testHostByAddress
|
||||||
|
@ -2,7 +2,8 @@ set -ev
|
|||||||
osname=`uname`
|
osname=`uname`
|
||||||
osarch=`uname -m`
|
osarch=`uname -m`
|
||||||
export POCO_BASE=`pwd`
|
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 PATH=$PATH:.
|
||||||
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:.:$POCO_BASE/lib/$osname/$osarch
|
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
|
build/script/runtests.sh
|
||||||
|
Loading…
x
Reference in New Issue
Block a user