-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.travis.yml
More file actions
38 lines (34 loc) · 883 Bytes
/
.travis.yml
File metadata and controls
38 lines (34 loc) · 883 Bytes
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
language: c
os: linux
sudo: false
before_install:
- git submodule update --init --recursive
matrix:
include:
- env: ZFS= CC=gcc
compiler: gcc
- env: ZFS= CC=clang-3.6
compiler: clang-3.6
addons: &clang36
apt:
packages:
- clang-3.6
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.6
script:
- ( cd buildrump.sh && ./buildrump.sh -s ../src-netbsd -V MKSTATICLIB=no -qq fullbuild )
- ./buildnb.sh -qq ${ZFS} tests ./buildrump.sh/rump
notifications:
irc:
channels:
- "chat.freenode.net#rumpkernel-builds"
template:
- '%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}'
skip_join: true
use_notice: true
email:
recipients:
- rumpkernel-builds@freelists.org
on_success: always
on_failure: always