libnl/.travis/run.sh
Thomas Haller 8cd946a683 travis-ci: run make check in travis build
Test programs are only compiled when running `make check`.
Also, fix passing $CFLAGS argument to make.

Acked-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: Thomas Haller <thaller@redhat.com>
2014-08-26 14:15:36 +02:00

14 lines
205 B
Bash
Executable file

#!/bin/bash
set -e
CFLAGS="-Werror"
if [ "$CC" = "clang" ]; then
CFLAGS="$CFLAGS -Wno-error=unused-command-line-argument"
fi
./autogen.sh
./configure
make CFLAGS="$CFLAGS"
make CFLAGS="$CFLAGS" check