e23fe2fc80
We don't normally accept pull requests via GitHub anymore, and the astyle download has been failing intermittently due to SourceForge availability issues, so just remove the check from the Travis script. Change-Id: I2aca07622126045e4605f93f4780b6bb55bb678a Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com> Reviewed-on: https://review.gerrithub.io/402166 Tested-by: SPDK Automated Test System <sys_sgsw@intel.com> Reviewed-by: Changpeng Liu <changpeng.liu@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
28 lines
374 B
YAML
28 lines
374 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
|
|
- ./unittest.sh
|