MegaGlest/.travis.yml

44 lines
893 B
YAML

# http://docs.travis-ci.com/user/build-configuration/
language: cpp
compiler:
- gcc
- clang
matrix:
#include:
# - compiler: gcc
# - compiler: clang
allow_failures:
- compiler: clang
git:
submodules: false
#branches:
# only:
# - master
before_install:
- sudo apt-get update -qq # UPDATE REPOS
#- sudo apt-get upgrade -qq # UPGRADE SYSTEM TO LATEST PATCH LEVEL
- sudo apt-get install -y -qq
- sudo mk/linux/setupBuildDeps.sh --quiet # INSTALL OUR DEPENDENCIES
script:
# ALL THE BUILD COMMANDS HERE
- mk/linux/build-mg.sh -c 4
notifications:
irc:
channels:
- "irc.freenode.org#megaglest"
skip_join: true
use_notice: true
template:
#- "[%{commit}: %{author}] %{message}"
#- "%{build_url}"
- "[%{repository}#%{branch} @%{commit}] %{author}): %{message}"
- "Diff: %{compare_url}"
- "Build: %{build_url}"