d6e3c3779c
Since we're using Slack now, there's no need to send notifications to the #spdk IRC channel. Signed-off-by: Jim Harris <james.r.harris@intel.com> Change-Id: Ie484bbeac2d8a959da8371d54e0d74f2cb4ae1d3 Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/456893 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Reviewed-by: Ben Walker <benjamin.walker@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
|