LimeReport/.travis.yml

28 lines
458 B
YAML
Raw Normal View History

2016-03-31 03:53:07 +03:00
language: cpp
compiler:
- gcc
sudo: required
dist: trusty
env:
- QT_BASE=56
before_install:
- if [ "$QT_BASE" = "56" ]; then sudo add-apt-repository ppa:beineri/opt-qt562-trusty -y; fi
2016-03-31 03:53:07 +03:00
- sudo apt-get update -qq
install:
2016-03-31 04:13:15 +03:00
- if [ "$QT_BASE" = "56" ]; then sudo apt-get install -qq qt56base qt56script qt56tools ; source /opt/qt56/bin/qt56-env.sh; fi
2016-03-31 04:03:50 +03:00
2016-03-31 03:53:07 +03:00
script:
2018-08-05 17:15:11 +03:00
- qmake -r limereport.pro
2016-03-31 03:53:07 +03:00
- make
- make check
notifications:
email: false
2016-04-02 05:05:41 +03:00