Subversion Repositories Scribus

Rev

Rev 21340 | Rev 21506 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
20505 craig 1
language: c++
20294 craig 2
 
20505 craig 3
matrix:
4
  include:
5
    - os: linux
6
      dist: trusty
7
      sudo: required
8
      compiler:
9
        - gcc
10
    - os: linux
11
      dist: trusty
12
      sudo: required
13
      compiler:
14
        - clang
15
    - os: osx
16
      compiler: clang
17
  exclude:
18
    - os: osx
19
      compiler: gcc
20
    - os: linux
21
      dist: precise
20294 craig 22
 
23
before_install:
20505 craig 24
# Linux
21307 craig 25
- if [ $TRAVIS_OS_NAME == linux ]; then 
21472 craig 26
      sudo apt-add-repository ppa:beineri/opt-qt57-trusty -y;
21340 craig 27
      sudo apt-add-repository ppa:ricotz/testing -y;
21307 craig 28
      sudo apt-get update -qq; 
20505 craig 29
      sudo apt-get install -y cmake libboost-python-dev libcups2-dev libhunspell-dev
30
      libhyphen-dev liblcms2-dev libpodofo-dev libtiff-dev libxml2-dev
21472 craig 31
      python-all-dev zlib1g-dev qt57base qt57declarative
32
      qt57tools libgraphicsmagick++1-dev
20505 craig 33
      libopenscenegraph-dev libpoppler-dev libcairo2-dev libwpg-dev libmspub-dev
34
      libcdr-dev libvisio-dev;
35
    fi
36
# OSX
37
# - if [ $TRAVIS_OS_NAME == osx ]; then brew --env && brew config && brew list; fi
38
- if [ $TRAVIS_OS_NAME == osx ]; then brew update; 
39
      brew outdated cmake --verbose || brew upgrade cmake; 
40
      brew tap homebrew/dupes && brew install homebrew/dupes/zlib && brew link --force zlib;
41
      brew install xz little-cms2 cairo qt5 hunspell ghostscript graphicsmagick poppler podofo; 
42
      brew outdated jpeg --verbose || brew upgrade jpeg;
43
      brew outdated libtiff --verbose || brew upgrade libtiff; 
44
      brew outdated fontconfig --verbose || brew upgrade fontconfig; 
45
      brew install openssl && brew link --force openssl; 
46
      brew outdated pkg-config --verbose || brew upgrade pkg-config; 
47
      brew outdated boost || brew upgrade boost; 
48
      brew outdated freetype || brew upgrade freetype; 
49
      brew install librevenge libwpg libvisio libmspub libcdr libpagemaker libfreehand open-scene-graph; 
50
    fi
51
  # - export LDFLAGS+=-L/usr/local/opt/zlib/lib:-L/usr/local/opt/gettext/lib:-L/usr/local/opt/libffi/lib:-L/usr/local/opt/qt5/lib:-L/usr/local/opt/sqlite/lib:-L/usr/local/opt/openssl/lib:-L/usr/local/opt/icu4c/lib
52
  # - export CXXFLAGS+=-I/usr/local/opt/zlib/include:-I/usr/local/opt/gettext/include:-I/usr/local/opt/qt5/include:-I/usr/local/opt/sqlite/include:-I/usr/local/opt/openssl/include:-I/usr/local/opt/icu4c/include 
20294 craig 53
 
54
script:
20505 craig 55
  - if [ $TRAVIS_OS_NAME == linux ]; then
21472 craig 56
      source /opt/qt57/bin/qt57-env.sh;
20505 craig 57
      if [[ $CC == gcc ]]; then
58
        export NPROC=8;
59
      else
60
        export NPROC=1;
61
      fi;
20996 jghali 62
    cmake . -DWANT_HUNSPELL=1 -DWITH_PODOFO=1 -DWANT_GRAPHICSMAGICK=1 -DWANT_DEBUG=0 -DWANT_SVNVERSION=0 -DWANT_GUI_LANG=en_US -DWANT_NOEXAMPLES=1 -DWANT_NOTEMPLATES=1;
20505 craig 63
    make -j"$NPROC";
20294 craig 64
    fi
20505 craig 65
 
20294 craig 66
 
20505 craig 67
  - if [ $TRAVIS_OS_NAME = osx -a $CC = clang ]; then
20996 jghali 68
      cmake . -DWANT_HUNSPELL=1 -DWITH_PODOFO=1 -DWANT_GRAPHICSMAGICK=1 -DWANT_DEBUG=0 -DWANT_SVNVERSION=0 -DWANT_GUI_LANG=en_US -DWANT_NOEXAMPLES=1 -DWANT_NOTEMPLATES=1 -DCMAKE_PREFIX_PATH=/usr/local/opt/zlib -DBUILD_OSX_BUNDLE=1 -DCMAKE_OSX_ARCHITECTURES="x86_64" -DQT_PREFIX=/usr/local/opt/qt5;
20505 craig 69
      make -j8; 
70
    fi
71
 
72
notifications:
20844 jghali 73
  irc:
74
    channels:
75
    -  "chat.freenode.net#scribus"
76
    -  "chat.freenode.net#scribus-dev"
77
    template:
78
    - "%{repository}/%{branch} (%{author}): %{build_url}: %{message}"
79
    on_success: always
80
    on_failure: always
20294 craig 81