forked from springlobby/springlobby
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.travis.yml
More file actions
38 lines (34 loc) · 694 Bytes
/
Copy path.travis.yml
File metadata and controls
38 lines (34 loc) · 694 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
35
36
37
language: cpp
compiler:
- gcc
- clang
dist: bionic
cache: ccache
addons:
apt:
packages:
- libwxgtk3.0-dev
- libboost-thread1.65-dev
- libboost-system1.65-dev
- libboost-test1.65-dev
- libalure-dev
- cmake
- libssl-dev
- gcc-8
- g++-8
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-8" CC="gcc-8"; fi
before_script:
# optional dependencies
- git submodule update --init --recursive
- cmake -DSPRINGLOBBY_UPDATER:BOOL=ON -DCMAKE_INSTALL_PREFIX:PATH=/tmp .
script:
- make -j2 -k
- make -k check
- make install
notifications:
irc:
channels:
- chat.freenode.net#springlobby
on_success: change
on_failure: change