2012-09-02 13:48:49 +02:00
|
|
|
language: cpp
|
|
|
|
|
2013-08-23 05:30:36 +02:00
|
|
|
compiler:
|
2014-06-04 19:51:07 +02:00
|
|
|
- clang
|
2014-08-05 22:10:56 +02:00
|
|
|
# - gcc
|
2014-03-18 23:00:24 +01:00
|
|
|
|
2014-08-09 00:01:35 +02:00
|
|
|
env:
|
|
|
|
matrix:
|
|
|
|
- DEBUG=True ENABLE_LOG=True DEFAULT_LOG_SEVERITY=debug XMLPARSER="libxml2" DEMO=False BENCHMARK=False CUSTOM_CXXFLAGS="" CUSTOM_LDFLAGS=""
|
2014-08-19 05:11:29 +02:00
|
|
|
- DEBUG=False ENABLE_LOG=False DEFAULT_LOG_SEVERITY=none XMLPARSER="ptree" DEMO=False BENCHMARK=False CUSTOM_CXXFLAGS="" CUSTOM_LDFLAGS=""
|
2014-08-09 00:01:35 +02:00
|
|
|
|
2014-08-22 01:36:55 +02:00
|
|
|
# travis + ubuntugis with gdal and postggis leads to many potential dead-end conflicts
|
|
|
|
# the below is thanks to https://github.com/CartoDB/Windshaft/blob/d82fe08b32fc7907bbe907ab290f8a082215ae26/.travis.yml#L1
|
2012-09-02 13:48:49 +02:00
|
|
|
before_install:
|
2014-08-22 01:36:55 +02:00
|
|
|
- export PGUSER=postgres
|
|
|
|
- sudo mv /etc/apt/sources.list.d/pgdg-source.list* /tmp
|
|
|
|
- sudo apt-get -qq purge postgis* postgresql*
|
|
|
|
- sudo apt-add-repository -y ppa:cartodb/postgresql-9.3
|
|
|
|
- sudo apt-add-repository -y ppa:cartodb/gis
|
|
|
|
- sudo rm -Rf /var/lib/postgresql /etc/postgresql
|
|
|
|
- sudo apt-get update -qq
|
|
|
|
- sudo apt-get install -q postgresql-9.3-postgis-2.1
|
|
|
|
- sudo apt-get install -q postgresql-contrib-9.3
|
|
|
|
- sudo apt-get install -q gdal-bin libgdal-dev
|
|
|
|
- echo -e "local\tall\tall\ttrust\nhost\tall\tall\t127.0.0.1/32\ttrust\nhost\tall\tall\t::1/128\ttrust" |sudo tee /etc/postgresql/9.3/main/pg_hba.conf
|
|
|
|
- sudo service postgresql restart
|
|
|
|
|
|
|
|
install:
|
|
|
|
- sudo add-apt-repository -y ppa:boost-latest/ppa
|
2013-11-22 22:37:56 +01:00
|
|
|
# we need at least g++-4.7 for c++11 features
|
2014-03-18 23:00:24 +01:00
|
|
|
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
2014-08-22 01:36:55 +02:00
|
|
|
- sudo apt-get update -qq
|
|
|
|
- sudo apt-get install -y ttf-wqy-microhei make valgrind boost1.55 python-nose libicu-dev libproj-dev libcairo-dev python-cairo-dev libcairo-dev python-cairo-dev libpng-dev libjpeg-dev libtiff-dev libwebp-dev libz-dev libfreetype6-dev libxml2-dev libsqlite3-dev
|
|
|
|
|
|
|
|
before_script:
|
|
|
|
- psql -U postgres -c 'create database template_postgis'
|
|
|
|
- psql -U postgres -c 'create extension postgis' -d template_postgis
|
2014-08-07 04:14:31 +02:00
|
|
|
- if [[ "${CXX}" == 'g++' ]]; then sudo apt-get install gcc-4.8 g++-4.8; export CXX="$(which g++-4.8)"; export CC="$(which gcc-4.8)"; fi;
|
2014-08-04 19:36:43 +02:00
|
|
|
- if [[ "${CXX}" == 'clang++' ]]; then export CXX="$(which clang++)"; export CC="$(which clang)"; fi;
|
2014-08-04 19:06:57 +02:00
|
|
|
- wget http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-0.9.34.tar.bz2
|
|
|
|
- tar xf harfbuzz-0.9.34.tar.bz2
|
|
|
|
- cd harfbuzz-0.9.34
|
2014-08-07 05:20:57 +02:00
|
|
|
- ./configure --prefix=/usr --with-icu --with-cairo=no --with-glib=no --with-gobject=no --with-graphite2=no --with-freetype --with-uniscribe=no --with-coretext=no && make && sudo make install
|
2013-11-22 09:52:49 +01:00
|
|
|
- cd ../
|
|
|
|
|
2013-11-22 21:07:58 +01:00
|
|
|
install:
|
2014-08-19 05:14:50 +02:00
|
|
|
- ./configure CXX="${CXX}" CC="${CC}" CUSTOM_CXXFLAGS="${CUSTOM_CXXFLAGS}" CUSTOM_LDFLAGS="${CUSTOM_LDFLAGS}" XML_PARSER="${XML_PARSER}" ENABLE_LOG="${ENABLE_LOG}" DEBUG="${DEBUG}" DEMO="${DEMO}" BENCHMARK="${BENCHMARK}" CPP_TESTS=True CAIRO=True FAST=True || cat config.log
|
2014-08-19 00:36:54 +02:00
|
|
|
- if [[ "${CXX}" == 'g++-4.8' ]]; then JOBS=2 make; else JOBS=4 make; fi;
|
2013-11-22 21:07:58 +01:00
|
|
|
|
|
|
|
before_script:
|
2014-07-23 01:14:22 +02:00
|
|
|
- make test
|
2014-08-22 01:36:55 +02:00
|
|
|
- source localize.sh && make grind
|
2013-11-22 21:07:58 +01:00
|
|
|
|
|
|
|
script:
|
2014-08-09 23:01:28 +02:00
|
|
|
- if [[ ${BENCHMARK} != False ]]; then make bench; fi;
|