2014-01-24 18:47:27 +01:00
|
|
|
# http://docs.travis-ci.com/user/build-configuration/
|
2013-12-08 22:03:34 +01:00
|
|
|
language: cpp
|
|
|
|
compiler:
|
|
|
|
- gcc
|
2013-12-09 22:26:16 +01:00
|
|
|
- clang
|
2014-01-26 03:36:03 +01:00
|
|
|
git:
|
|
|
|
submodules: false
|
2014-01-24 18:47:27 +01:00
|
|
|
#branches:
|
|
|
|
# only:
|
|
|
|
# - master
|
2013-12-08 22:03:34 +01:00
|
|
|
before_install:
|
2014-01-24 18:47:27 +01:00
|
|
|
- sudo apt-get update -qq # UPDATE REPOS
|
|
|
|
- sudo mk/linux/setupBuildDeps.sh --quiet # INSTALL DEPENDENCIES HERE
|
2013-12-08 22:03:34 +01:00
|
|
|
script:
|
|
|
|
# ALL THE BUILD COMMANDS HERE
|
2014-01-24 18:47:27 +01:00
|
|
|
- mk/linux/build-mg.sh -c 4
|
2013-12-08 22:03:34 +01:00
|
|
|
notifications:
|
|
|
|
irc:
|
|
|
|
channels:
|
|
|
|
- "irc.freenode.org#megaglest"
|
|
|
|
skip_join: true
|
2014-01-24 18:47:27 +01:00
|
|
|
use_notice: true
|
|
|
|
template:
|
|
|
|
#- "[%{commit}: %{author}] %{message}"
|
|
|
|
#- "%{build_url}"
|
|
|
|
- "[%{repository}#%{branch} @%{commit}] %{author}): %{message}"
|
|
|
|
- "Diff: %{compare_url}"
|
|
|
|
- "Build: %{build_url}"
|