mirror of
https://github.com/glest/glest-source.git
synced 2025-02-22 18:54:58 +01:00
45 lines
930 B
YAML
45 lines
930 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 apt-get install libsdl2-dev
|
|
- 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}"
|