summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 5ab2a020284a701f548eb548be82e891caeb9f06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
language: cpp

os:
  - linux
  - osx

compiler:
  - clang
  - gcc

install:
# create /etc/sysconfig so that the build process enables this module (build test)
  - |
    if [[ "$TRAVIS_OS_NAME" = "linux" ]]; then
      sudo mkdir /etc/sysconfig
      sudo apt-get -qq update
      sudo apt-get install -y libjavascriptcoregtk-3.0-dev
    fi

script:
  - |
    cmake .           \
    -DWITH_PERL=ON    \
    -DWITH_PYTHON2=ON \
    -DWITH_GNOME3=ON  \
    -DWITH_KDE=ON     \
    -DWITH_WEBKIT3=ON \
    -DBIPR=0
  - make
  - sudo make install
  - make test