mirror of
https://github.com/pocoproject/poco.git
synced 2025-03-10 20:27:55 +01:00
Comment out unbundled build since it fails on Ubuntu precise
All unbundled build are failing on Ubuntu precise while there are ok on Ubuntu trusty & xenial. Waiting for Travis to change the worker's platform from Ubuntu precise to ubuntu trusty or newer.
This commit is contained in:
parent
e052f3861a
commit
260bbd5252
70
.travis.yml
70
.travis.yml
@ -54,7 +54,7 @@ matrix:
|
||||
fast_finish: true
|
||||
|
||||
include:
|
||||
- env: TEST_NAME="OSX clang (make) bundled"
|
||||
- env: TEST_NAME="clang (make) bundled"
|
||||
os: osx
|
||||
compiler: clang
|
||||
script:
|
||||
@ -64,7 +64,7 @@ matrix:
|
||||
- clang++ -x c++ /dev/null -dM -E
|
||||
- ./configure --everything --omit=Data/ODBC,Data/MySQL,Data/PostgreSQL && make -s -j2 && sudo make install && ./travis/OSX/runtests.sh
|
||||
|
||||
- env: TEST_NAME="Linux clang (make) bundled"
|
||||
- env: TEST_NAME="clang (make) bundled"
|
||||
compiler: clang
|
||||
script:
|
||||
- sudo apt-get install -qq -y clang
|
||||
@ -74,16 +74,16 @@ matrix:
|
||||
- sudo apt-get install -qq -y libpcre3-dev libssl-dev libexpat1-dev
|
||||
- ./configure --everything && make -s -j2 && ./travis/Linux/runtests.sh
|
||||
|
||||
- env: TEST_NAME="Linux clang (make) unbundled"
|
||||
compiler: clang
|
||||
script:
|
||||
- sudo apt-get install -qq -y clang
|
||||
- export CC="clang"
|
||||
- export CXX="clang++"
|
||||
- $CXX --version
|
||||
- ./configure --everything --unbundled && make -s -j2 && ./travis/Linux/runtests.sh
|
||||
#- env: TEST_NAME="clang (make) unbundled"
|
||||
# compiler: clang
|
||||
# script:
|
||||
# - sudo apt-get install -qq -y clang
|
||||
# - export CC="clang"
|
||||
# - export CXX="clang++"
|
||||
# - $CXX --version
|
||||
# - ./configure --everything --unbundled && make -s -j2 && ./travis/Linux/runtests.sh
|
||||
|
||||
- env: TEST_NAME="Linux gcc 4.6 (make) bundled"
|
||||
- env: TEST_NAME="gcc 4.6 (make) bundled"
|
||||
compiler: gcc
|
||||
script:
|
||||
- export CC="gcc"
|
||||
@ -91,16 +91,16 @@ matrix:
|
||||
- $CXX --version
|
||||
- ./configure --everything && make -s -j2 && ./travis/Linux/runtests.sh
|
||||
|
||||
- env: TEST_NAME="Linux gcc 4.6 (make) unbundled"
|
||||
compiler: gcc
|
||||
script:
|
||||
- export CC="gcc"
|
||||
- export CXX="g++"
|
||||
- $CXX --version
|
||||
- sudo apt-get install -qq -y libpcre3-dev libssl-dev libexpat1-dev
|
||||
- ./configure --everything --unbundled && make -s -j2 && ./travis/Linux/runtests.sh
|
||||
#- env: TEST_NAME="gcc 4.6 (make) unbundled"
|
||||
# compiler: gcc
|
||||
# script:
|
||||
# - export CC="gcc"
|
||||
# - export CXX="g++"
|
||||
# - $CXX --version
|
||||
# - sudo apt-get install -qq -y libpcre3-dev libssl-dev libexpat1-dev
|
||||
# - ./configure --everything --unbundled && make -s -j2 && ./travis/Linux/runtests.sh
|
||||
|
||||
- env: TEST_NAME="Linux gcc 4.8 (make) bundled"
|
||||
- env: TEST_NAME="gcc 4.8 (make) bundled"
|
||||
compiler: gcc
|
||||
script:
|
||||
- export CC="gcc-4.8"
|
||||
@ -108,21 +108,21 @@ matrix:
|
||||
- $CXX --version
|
||||
- ./configure --everything && make -s -j2 && ./travis/Linux/runtests.sh
|
||||
|
||||
- env: TEST_NAME="Linux gcc 4.8 (make) unbundled"
|
||||
compiler: gcc
|
||||
script:
|
||||
- sudo apt-get install -qq -y libpcre3-dev libssl-dev libexpat1-dev
|
||||
- export CC="gcc-4.8"
|
||||
- export CXX="g++-4.8"
|
||||
- $CXX --version
|
||||
- ./configure --everything --unbundled && make -s -j2 && ./travis/Linux/runtests.sh
|
||||
#- env: TEST_NAME="gcc 4.8 (make) unbundled"
|
||||
# compiler: gcc
|
||||
# script:
|
||||
# - sudo apt-get install -qq -y libpcre3-dev libssl-dev libexpat1-dev
|
||||
# - export CC="gcc-4.8"
|
||||
# - export CXX="g++-4.8"
|
||||
# - $CXX --version
|
||||
# - ./configure --everything --unbundled && make -s -j2 && ./travis/Linux/runtests.sh
|
||||
|
||||
- env: TEST_NAME="Linux arm-linux-gnueabi- (make)"
|
||||
- env: TEST_NAME="arm-linux-gnueabi- (make)"
|
||||
compiler: gcc
|
||||
script:
|
||||
- ./configure --omit=Data/ODBC,Data/MySQL,Data/PostgreSQL,Crypto,NetSSL,PageCompiler && make -s -j2 CROSS_COMPILE=arm-linux-gnueabi- POCO_TARGET_OSARCH=armv7l
|
||||
|
||||
- env: TEST_NAME="Linux gcc 4.6 (CMake)"
|
||||
- env: TEST_NAME="gcc 4.6 (CMake)"
|
||||
compiler: gcc
|
||||
script:
|
||||
- export CC="gcc"
|
||||
@ -132,7 +132,7 @@ matrix:
|
||||
- export POCO_BASE=`pwd`
|
||||
- mkdir cmake-build && cd cmake-build && cmake -DENABLE_TESTS=ON .. && make -s -j2 && ctest -VV -E Data && cd ..
|
||||
|
||||
- env: TEST_NAME="Linux gcc 4.8 (CMake)"
|
||||
- env: TEST_NAME="gcc 4.8 (CMake)"
|
||||
compiler: gcc
|
||||
script:
|
||||
- export CC="gcc-4.8"
|
||||
@ -142,14 +142,14 @@ matrix:
|
||||
- export POCO_BASE=`pwd`
|
||||
- mkdir cmake-build && cd cmake-build && cmake -DENABLE_TESTS=ON .. && make -s -j2 && ctest -VV -E Data && cd ..
|
||||
|
||||
- env: TEST_NAME="Linux clang 3.4 (CMake)"
|
||||
- env: TEST_NAME="clang 3.4 (CMake)"
|
||||
compiler: clang
|
||||
script:
|
||||
- source ./travis/ignored.sh
|
||||
- export POCO_BASE=`pwd`
|
||||
- mkdir cmake-build && cd cmake-build && cmake -DENABLE_TESTS=ON .. && make -s -j2 && ctest -VV -E Data && cd ..
|
||||
|
||||
- env: TEST_NAME="Linux arm-linux-gnueabi-g++ (CMake)"
|
||||
- env: TEST_NAME="arm-linux-gnueabi-g++ (CMake)"
|
||||
compiler: gcc
|
||||
script:
|
||||
- export CC="arm-linux-gnueabi-gcc"
|
||||
@ -160,7 +160,7 @@ matrix:
|
||||
- mkdir cmake-build
|
||||
- cd cmake-build && cmake -DENABLE_NETSSL=OFF -DENABLE_CRYPTO=OFF -DENABLE_TESTS=ON .. && make -s -j2 && cd ..
|
||||
|
||||
- env: TEST_NAME="Linux arm-linux-gnueabihf-g++ (CMake)"
|
||||
- env: TEST_NAME="arm-linux-gnueabihf-g++ (CMake)"
|
||||
compiler: gcc
|
||||
script:
|
||||
- export CC="arm-linux-gnueabihf-gcc"
|
||||
@ -174,7 +174,7 @@ matrix:
|
||||
|
||||
# QA jobs for code analytics and metrics
|
||||
# build documentation and release
|
||||
- env: TEST_NAME="Linux documentation & release"
|
||||
- env: TEST_NAME="documentation & release"
|
||||
compiler: gcc
|
||||
script:
|
||||
- export CC="gcc-4.8"
|
||||
|
Loading…
x
Reference in New Issue
Block a user