mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-03 00:02:25 -05:00
Some warnings are wrapped in Q_NOWARN_DEPRECATED_*, these are warnings for issues which are not critical and therefore of limited importance. The general idea is to leave the space for compiler warnings to the one that really need to be addressed. Also removes a no longer required header file of dxflib. Exposes some ready-to use doxymentation by wrapping it in appropriate comment structure. And some more cleanup
63 lines
2.6 KiB
YAML
63 lines
2.6 KiB
YAML
language: cpp
|
|
|
|
compiler:
|
|
- clang
|
|
|
|
cache: apt
|
|
|
|
notifications:
|
|
irc: "chat.freenode.net#qgis-test"
|
|
on_failure: change
|
|
on_success: change
|
|
skip_join: true
|
|
|
|
notifications:
|
|
webhooks:
|
|
urls:
|
|
- https://webhooks.gitter.im/e/467e3aff72e344d1dae3
|
|
on_success: change # options: [always|never|change] default: always
|
|
on_failure: always # options: [always|never|change] default: always
|
|
on_start: never # default: never
|
|
|
|
addons:
|
|
postgresql: "9.1"
|
|
|
|
before_install:
|
|
- sudo add-apt-repository ppa:ubuntugis/ppa -y
|
|
- sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable -y # For postgresql-9.1-postgis-2.1
|
|
- sudo add-apt-repository ppa:smspillaz/cmake-3.0.2 -y
|
|
- sudo add-apt-repository ppa:kedazo/doxygen-updates-precise -y # For doxygen 1.8.8
|
|
- sudo rm -f /etc/apt/sources.list.d/pgdg-source.list # postgis from pgdg requires different gdal package than the grass package
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get remove postgresql-9.1-postgis-2.1 # Remove postgis from pgdg, will install postgis from ubuntugis-unstable instead
|
|
- sudo apt-get install --no-install-recommends
|
|
bison cmake cmake-data doxygen flex git graphviz
|
|
grass-dev libexpat1-dev libfcgi-dev libgdal1-dev
|
|
libgeos-dev libgsl0-dev libpq-dev libproj-dev
|
|
libqscintilla2-dev libqt4-dev libqt4-opengl-dev
|
|
libqtwebkit-dev libqwt-dev libspatialindex-dev
|
|
libspatialite-dev libsqlite3-dev lighttpd pkg-config
|
|
poppler-utils pyqt4-dev-tools python python-dev
|
|
python-qt4 python-qt4-dev python-sip python-sip-dev
|
|
spawn-fcgi txt2tags xauth xfonts-100dpi xfonts-75dpi
|
|
xfonts-base xfonts-scalable xvfb
|
|
postgresql-9.1-postgis-2.1
|
|
- cmake --version
|
|
- clang --version
|
|
|
|
install:
|
|
- mkdir build
|
|
- cd build
|
|
- cmake -DWITH_SERVER=ON -DWITH_STAGED_PLUGINS=OFF -DWITH_GRASS=OFF
|
|
-DSUPPRESS_QT_WARNINGS=ON -DENABLE_MODELTEST=ON -DENABLE_PGTEST=ON
|
|
-DWITH_QWTPOLAR=OFF -DWITH_APIDOC=ON -DWITH_PYSPATIALITE=ON ..
|
|
|
|
before_script:
|
|
- printf "[qgis_test]\nhost=localhost\ndbname=qgis_test\nuser=postgres" > ~/.pg_service.conf
|
|
- psql -c 'CREATE DATABASE qgis_test;' -U postgres
|
|
- psql -c 'CREATE EXTENSION postgis;' -U postgres -d qgis_test
|
|
- psql -f $TRAVIS_BUILD_DIR/tests/testdata/provider/testdata.sql -U postgres -d qgis_test
|
|
|
|
script: xvfb-run ctest -V -E 'qgis_openstreetmaptest|PyQgsPalLabelingServer|qgis_wcsprovidertest' -S ../qgis-test-travis.ctest --output-on-failure
|
|
|