0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-26 16:11:02 +08:00
easy_profiler/.travis.yml

35 lines
686 B
YAML
Raw Normal View History

2016-06-29 07:01:34 +04:00
sudo: required
dist: trusty
2016-06-29 06:52:23 +04:00
language: cpp
compiler:
- clang
- gcc
script:
- mkdir build
- cd build
2016-06-29 06:55:12 +04:00
- cmake --version
2016-06-29 06:57:06 +04:00
- cmake .. && make
addons:
apt:
sources:
- george-edison55-precise-backports # cmake 3.2.3 / doxygen 1.8.3
2016-06-29 07:01:34 +04:00
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.7
2016-06-29 07:08:41 +04:00
- ubuntu-sdk-team/ppa
2016-06-29 06:57:06 +04:00
packages:
- cmake
2016-06-29 06:59:06 +04:00
- cmake-data
2016-06-29 07:01:34 +04:00
- gcc-5
- g++-5
- clang-3.7
2016-06-29 07:03:01 +04:00
- qtbase5-dev
- qtdeclarative5-dev
- libqt5webkit5-dev
- libsqlite3-dev
- qt5-default
- qttools5-dev-tools
2016-06-29 07:10:23 +04:00
before_install:
- sudo add-apt-repository --yes ppa:ubuntu-sdk-team/ppa
- sudo apt-get update -qq