forked from MaddTheSane/executor
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.travis.yml
More file actions
34 lines (31 loc) · 747 Bytes
/
.travis.yml
File metadata and controls
34 lines (31 loc) · 747 Bytes
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
32
33
34
lang: cpp
dist: xenial
compiler: gcc
sudo: required
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-8
- g++-8
- cmake-data
- cmake
- libsdl2-dev
- bison
before_script:
- sudo add-apt-repository ppa:rexut/recoil -y
- sudo add-apt-repository ppa:beineri/opt-qt-5.11.1-xenial -y
- sudo apt-get update -
- sudo apt-get install boost1.63
- sudo apt install qt511-meta-full
- mkdir -p ~/.config/qtchooser
- echo /opt/qt511/bin > ~/.config/qtchooser/default.conf
- echo /opt/qt511/lib >> ~/.config/qtchooser/default.conf
script:
- qmake -v
- mkdir build
- cd build
- cmake .. -DCMAKE_C_COMPILER=gcc-8 -DCMAKE_CXX_COMPILER=g++-8
- make
- ctest . -LE xfail