]> git.proxmox.com Git - ceph.git/blame - ceph/src/spdk/.travis.yml
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / spdk / .travis.yml
CommitLineData
7c673cae
FG
1language: c
2
3compiler:
4 - gcc
5 - clang
6
7dist: trusty
8sudo: false
9
10addons:
11 apt:
12 packages:
13 - libcunit1-dev
14 - libaio-dev
15 - libssl-dev
11fdf7f2
TL
16 - uuid-dev
17 - libnuma-dev
7c673cae
FG
18
19before_script:
11fdf7f2 20 - git submodule update --init
7c673cae 21 - export MAKEFLAGS="-j$(nproc)"
7c673cae
FG
22
23script:
11fdf7f2
TL
24 - ./scripts/check_format.sh
25 - ./configure --enable-werror
26 - make
27 - ./test/unit/unittest.sh
28
29notifications:
30 irc:
31 channels:
32 - "chat.freenode.net#spdk"
33 template:
34 - "(%{repository_name}/%{branch}) %{commit_subject} (%{author})"
35 - "Diff URL: %{compare_url}"
36 on_success: always
37 on_failure: always