summaryrefslogtreecommitdiffstats
path: root/src/spdk/.travis.yml
blob: 9cebfc6ec4f4d1c21b900e168d42f28501bf5f66 (plain)
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
language: c

compiler:
  - gcc
  - clang

dist: trusty
sudo: false

addons:
  apt:
    packages:
      - libcunit1-dev
      - libaio-dev
      - libssl-dev
      - uuid-dev
      - libnuma-dev

before_script:
  - git submodule update --init
  - export MAKEFLAGS="-j$(nproc)"

script:
  - ./scripts/check_format.sh
  - ./configure --enable-werror
  - make
  - ./test/unit/unittest.sh

notifications:
  irc:
    channels:
      - "chat.freenode.net#spdk"
    template:
      - "(%{repository_name}/%{branch}) %{commit_subject} (%{author})"
      - "Diff URL: %{compare_url}"
    on_success: always
    on_failure: always