forked from apache/mesos
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
38 lines (38 loc) · 908 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
32
33
34
35
36
37
38
matrix:
fast_finish: true
include:
- os: linux
env: BUILD_TYPE=Debug
compiler: clang
- os: linux
env: BUILD_TYPE=Release
compiler: clang
- os: linux
env: BUILD_TYPE=Debug
compiler: gcc
- os: linux
env: BUILD_TYPE=Release
compiler: gcc
# - os: osx
# env: BUILD_TYPE=Debug
# - os: osx
# env: BUILD_TYPE=Release
language: cpp
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libapr1-dev libsvn-dev libsasl2-dev
before_script:
- ./bootstrap
- mkdir build
- cd build
script:
- if [ "$BUILD_TYPE" = "Debug" ]; then ../configure --enable-debug; fi
- if [ "$BUILD_TYPE" = "Release" ]; then ../configure; fi
- make
- make check
notifications:
irc:
channels:
- "chat.freenode.net#mesos"
template:
- "%{repository}/%{branch} (%{commit} - %{author}): %{build_url}: %{message}"