.travis.yml 3.02 KB
Newer Older
1 2
sudo: true

Daniel Agar's avatar
Daniel Agar committed
3 4 5
language: cpp

git:
6
  depth: 500
Daniel Agar's avatar
Daniel Agar committed
7

8 9 10
matrix:
    include:
        - os: linux
11
          env: SPEC=linux-g++-64 CONFIG=debug
12
        - os: linux
13
          env: SPEC=linux-g++-64 CONFIG=release
14 15
        - os: osx
          osx_image: beta-xcode6.3
16
          env: SPEC=macx-clang CONFIG=debug
17 18
        - os: osx
          osx_image: beta-xcode6.3
19
          env: SPEC=macx-clang CONFIG=release
Daniel Agar's avatar
Daniel Agar committed
20 21

cache:
22
  - apt
Daniel Agar's avatar
Daniel Agar committed
23 24

before_install:
25 26 27 28
  - cd ${TRAVIS_BUILD_DIR} && git fetch --unshallow && git fetch --tags
  - if [ "${TRAVIS_OS_NAME}" = "osx" ]; then mkdir -p $HOME/Library/Preferences/QtProject/ && echo "[Rules]\n *Log.debug=false" >> $HOME/Library/Preferences/QtProject/qtlogging.ini; fi
  - if [ "${TRAVIS_OS_NAME}" = "osx" ]; then cp ${TRAVIS_BUILD_DIR}/test/qtlogging.ini ~/Library/Preferences/; fi
  - if [ "${TRAVIS_OS_NAME}" = "osx" ]; then cp ${TRAVIS_BUILD_DIR}/test/qtlogging.ini ~/Library/Preferences/QtProject/; fi
Daniel Agar's avatar
Daniel Agar committed
29 30 31

install:
  - if [ "${TRAVIS_OS_NAME}" = "linux" ]; then
32 33
         mkdir -p $HOME/.config/QtProject $HOME/.config/QGroundControl.org $HOME/QGroundControl
      && sudo apt-add-repository -y ppa:ubuntu-toolchain-r/test
Daniel Agar's avatar
Daniel Agar committed
34 35 36
      && sudo apt-add-repository -y ppa:beineri/opt-qt541
      && sudo apt-get -qq update
      && sudo apt-get -qq install g++-4.8 libc6-i386 qt54tools qt54base qt54declarative qt54serialport qt54svg qt54webkit qt54quickcontrols qt54xmlpatterns qt54x11extras qt54websockets qt54sensors qt54script qt54quick1 qt54multimedia qt54location qt54imageformats qt54graphicaleffects qt54connectivity espeak libespeak-dev libopenscenegraph-dev libsdl1.2-dev libudev-dev
37
      && export PATH=/opt/qt54/bin:$PATH
Daniel Agar's avatar
Daniel Agar committed
38 39
      && export CXX="g++-4.8"
      && export CC="gcc-4.8"
40 41
      && export DISPLAY=:99.0
      && sh -e /etc/init.d/xvfb start
Daniel Agar's avatar
Daniel Agar committed
42 43
      ;
    else
44 45 46 47 48
         brew tap PX4/homebrew-px4
      && brew update
      && brew install qt54
      && brew linkapps qt54
      && export PATH=/usr/local/opt/qt54/bin:$PATH
Daniel Agar's avatar
Daniel Agar committed
49 50 51
      ;
    fi

52

53
before_script: qmake -r qgroundcontrol.pro CONFIG+=${CONFIG} CONFIG+=WarningsAsErrorsOn -spec ${SPEC}
Daniel Agar's avatar
Daniel Agar committed
54
script:
55
  - echo 'Building QGroundControl' && echo -en 'travis_fold:start:script.1\\r'
Daniel Agar's avatar
Daniel Agar committed
56
  - make -j4
57 58 59 60 61
  - echo -en 'travis_fold:end:script.1\\r'
  - echo 'Running unittests' && echo -en 'travis_fold:start:script.2\\r'
#  - if [[ "${TRAVIS_OS_NAME}" = "linux" && "${CONFIG}" = "debug" ]]; then ls -ls ~; ls -ls ~/.config; ./debug/qgroundcontrol --unittest; fi
  - if [[ "${TRAVIS_OS_NAME}" = "osx" && "${CONFIG}" = "debug" ]]; then ./debug/qgroundcontrol.app/Contents/MacOS/qgroundcontrol --unittest; fi
  - echo -en 'travis_fold:end:script.2\\r'
Daniel Agar's avatar
Daniel Agar committed
62 63 64 65 66 67 68 69 70 71

#deploy:
#  provider: releases
#  api-key:
#    secure: ""
#  file: "release/qgroundcontrol"
#  skip_cleanup: true
#  on:
#    tags: true
#    all_branches: true
72 73 74 75 76 77 78 79 80

notifications:
  webhooks:
    urls:
      - https://webhooks.gitter.im/e/60b033428ae9dc715662
    on_success: change  # options: [always|never|change] default: always
    on_failure: always  # options: [always|never|change] default: always
    on_start: never     # options: [always|never|change] default: always