fb4ee5ce38
Currently, the astyle build is failing due to sourceforge.net downloads failing. Move the git submodule update before that since it's more critical. Change-Id: Ibbf32759eed0f557652de41e7bfec6e8a3058772 Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com> Reviewed-on: https://review.gerrithub.io/380532 Tested-by: SPDK Automated Test System <sys_sgsw@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
36 lines
641 B
YAML
36 lines
641 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)"
|
|
- if [ "$CC" = gcc ]; then
|
|
wget https://downloads.sourceforge.net/project/astyle/astyle/astyle%203.0/astyle_3.0_linux.tar.gz;
|
|
tar xf astyle_3.0_linux.tar.gz;
|
|
pushd astyle/build/gcc;
|
|
make;
|
|
export PATH=$PWD/bin:$PATH;
|
|
popd;
|
|
fi
|
|
|
|
script:
|
|
- ./scripts/check_format.sh
|
|
- ./configure --enable-werror
|
|
- make
|
|
- ./unittest.sh
|