-
Notifications
You must be signed in to change notification settings - Fork 50
/
.travis.yml
34 lines (28 loc) · 952 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
language: c
compiler:
- gcc
- clang
sudo: false
before_script:
- ./buildrump.sh checkout
env:
- NAME='static' LIBTYPE='MKPIC=no' BUILDTYPE='' TESTS='tests'
- NAME='dynamic' LIBTYPE='MKSTATICLIB=no' BUILDTYPE='' TESTS='tests'
- NAME='debug' LIBTYPE='MKSTATICLIB=no' BUILDTYPE='-DDD' TESTS='tests'
- NAME='release' LIBTYPE='MKSTATICLIB=no' BUILDTYPE='-r' TESTS='tests'
- NAME='fibers' LIBTYPE='MKSTATICLIB=no' BUILDTYPE='-V RUMPUSER_THREADS=fiber -V RUMP_CURLWP=hypercall' TESTS=''
script:
- ./buildrump.sh -o obj.${NAME} -d rump.${NAME} -qq -j16 -V ${LIBTYPE} ${BUILDTYPE} fullbuild ${TESTS}
notifications:
irc:
channels:
- "chat.freenode.net#rumpkernel-builds"
template:
- '%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}'
skip_join: true
use_notice: true
email:
recipients:
on_success: always
on_failure: always