forked from rumpkernel/rumprun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
41 lines (35 loc) · 1.12 KB
/
.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
39
40
41
language: c
compiler:
- gcc
before_script:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -y
- sudo apt-get install qemu-kvm -y
- sudo apt-get install libxen-dev -y
- sudo apt-get install g++-4.8 -y
env:
- PLATFORM=xen MACHINE=x86_64 TESTS=none EXTRAFLAGS=
- PLATFORM=xen MACHINE=i486 ELF=elf TESTS=none EXTRAFLAGS='-- -F ACLFLAGS=-m32'
- PLATFORM=hw MACHINE=x86_64 TESTS=qemu EXTRAFLAGS=
- PLATFORM=hw MACHINE=i486 ELF=elf TESTS=qemu EXTRAFLAGS='-- -F ACLFLAGS=-m32 -F ACLFLAGS=-march=i686'
script:
- export CC=gcc-4.8
- export CXX=g++-4.8
- git submodule update --init
- ./build-rr.sh -qq ${PLATFORM} ${EXTRAFLAGS}
- ./tests/buildtests.sh ${MACHINE} ${PLATFORM} ${ELF}
- ./tests/runtests.sh ${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
# touch me to force a travis rebuild