Clean up and re-enable notifications in travis config.
This commit is contained in:
parent
8f0ecee80c
commit
0542a85204
33
.travis.yml
33
.travis.yml
@ -11,28 +11,29 @@ compiler:
|
|||||||
# only:
|
# only:
|
||||||
# - master
|
# - master
|
||||||
before_install:
|
before_install:
|
||||||
# UPDATE REPOS
|
# Update repos
|
||||||
- sudo apt-get update -qq
|
- sudo apt-get update -qq
|
||||||
# INSTALL DEPENDENCIES
|
# Install dependencies
|
||||||
- sudo apt-get install build-essential cmake libogg-dev libvorbis-dev libopenal-dev libxxf86vm-dev libgl1-mesa-dev libglu1-mesa-dev libcurl4-openssl-dev libfribidi-dev libbluetooth-dev
|
- sudo apt-get install build-essential cmake libogg-dev libvorbis-dev libopenal-dev libxxf86vm-dev libcurl4-openssl-dev libfribidi-dev libbluetooth-dev
|
||||||
|
# Install mesa from an other repo (a newer version is required)
|
||||||
- sudo apt-add-repository "deb http://archive.ubuntu.com/ubuntu quantal main restricted"
|
- sudo apt-add-repository "deb http://archive.ubuntu.com/ubuntu quantal main restricted"
|
||||||
- sudo apt-get update -qq
|
- sudo apt-get update -qq
|
||||||
- sudo apt-get install libgl1-mesa-dev libglu1-mesa-dev
|
- sudo apt-get install libgl1-mesa-dev libglu1-mesa-dev
|
||||||
script:
|
script:
|
||||||
# BUILD COMMANDS
|
# Build commands
|
||||||
- mkdir build
|
- mkdir build
|
||||||
- cd build
|
- cd build
|
||||||
- cmake .. -DCMAKE_BUILD_TYPE=Debug
|
- cmake .. -DCMAKE_BUILD_TYPE=Debug
|
||||||
- make VERBOSE=1 -j 4
|
- make VERBOSE=1 -j 4
|
||||||
# notifications:
|
notifications:
|
||||||
# irc:
|
irc:
|
||||||
# channels:
|
channels:
|
||||||
# - "irc.freenode.org#stk"
|
- "irc.freenode.org#stk"
|
||||||
# skip_join: false
|
skip_join: false
|
||||||
# use_notice: true
|
use_notice: true
|
||||||
# template:
|
template:
|
||||||
# #- "[%{commit}: %{author}] %{message}"
|
#- "[%{commit}: %{author}] %{message}"
|
||||||
# #- "%{build_url}"
|
#- "%{build_url}"
|
||||||
# - "[%{repository}#%{branch} @%{commit}] %{author}): %{message}"
|
- "[%{repository}#%{branch} @%{commit}] %{author}): %{message}"
|
||||||
# - "Diff: %{compare_url}"
|
- "Diff: %{compare_url}"
|
||||||
# - "Build: %{build_url}"
|
- "Build: %{build_url}"
|
||||||
|
Loading…
Reference in New Issue
Block a user