forked from nfs-ganesha/nfs-ganesha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
47 lines (38 loc) · 1.03 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
42
43
44
45
46
language: c
compiler:
- gcc
env:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
branches:
only:
- travis
- next
before_install:
- git submodule update --init --recursive
- sudo apt-get install libnfsidmap2
- sudo apt-get install libnfsidmap-dev
- sudo apt-get install libkrb5-3
- sudo apt-get install libkrb5-dev
- sudo apt-get install libk5crypto3
- sudo apt-get install libgssapi-krb5-2
- sudo apt-get install libgssglue1
- sudo apt-get install libdbus-1-3
- sudo apt-get install dbus
- sudo apt-get install libdbus-1-dev
- sudo apt-get install libcap-dev
script: mkdir ../build && cd ../build && cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DBUILD_CONFIG=everything ../nfs-ganesha/src/ && make
notifications:
email:
recepients:
on_success: always
on_failure: always
irc:
channels:
- "irc.panasas.com#pnfs"
template:
- "%{repository}#%{build_number} (%{branch} - %{commit}) : %{message}"
- "Build details: %{build_url}"
use_notice: true
skip_join: true