forked from lenmus/lenmus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
31 lines (26 loc) · 843 Bytes
/
.travis.yml
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
language: cpp
compiler: gcc
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
- sudo apt-get install -y build-essential
- sudo apt-get install -y cmake libboost-date-time-dev libboost-thread-dev libboost-system-dev
- sudo apt-get install -y libportmidi-dev libsqlite3-0 libsqlite3-dev
- sudo apt-get install -y libfreetype6-dev libpng++-dev zlib1g-dev libwxgtk3.0-dev
before_script:
- mkdir build
- cd build
- cmake -G "Unix Makefiles" ..
script:
- make
notifications:
email:
on_success: always
on_failure: always
irc:
channels:
- "irc.freenode.net#lenmus"
template:
- "Build #%{build_number} at %{repository_slug}/%{branch} took %{duration}"
- "%{author} %{commit} \"%{commit_message}\" %{compare_url}"
- "%{message} %{build_url}"