12e840b937
All files called directly by the unittest.sh script are now located in the test/unit directory. Change-Id: I95cfb3d5b7c6ede59d7183c39466f32b7e676643 Signed-off-by: Seth Howell <seth.howell@intel.com> Reviewed-on: https://review.gerrithub.io/401717 Tested-by: SPDK Automated Test System <sys_sgsw@intel.com> Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
28 lines
384 B
YAML
28 lines
384 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
|