315630a2fd
Signed-off-by: Jim Harris <james.r.harris@intel.com> Change-Id: If5d1a4322a66c1d0b33987000ac5f37a310b5cfa Reviewed-on: https://review.gerrithub.io/404209 Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com>
38 lines
620 B
YAML
38 lines
620 B
YAML
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
|