summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/travis.sh37
1 files changed, 0 insertions, 37 deletions
diff --git a/scripts/travis.sh b/scripts/travis.sh
deleted file mode 100755
index 7d59b24dc..000000000
--- a/scripts/travis.sh
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/bash
-
-set -e
-
-if [[ $ENABLE_SANITIZERS ]]; then
- LOCAL_CMAKE_EXTRA_ARGS="-DCMAKE_C_FLAGS=-fsanitize=$ENABLE_SANITIZERS"
- LOCAL_MAKE_EXTRA_ARGS="CFLAGS=-fsanitize=$ENABLE_SANITIZERS LDFLAGS=-fsanitize=$ENABLE_SANITIZERS"
-fi
-
-if [[ $USE_CMAKE ]]; then
- echo "$0: using cmake + make:" $LOCAL_CMAKE_EXTRA_ARGS $EXTRA_ARGS
- mkdir build-cmake
- cd build-cmake
- cmake $LOCAL_CMAKE_EXTRA_ARGS $EXTRA_ARGS ..
- make
- [[ $DISABLE_TESTS ]] || make test
- make clean
-fi
-
-if [[ $USE_CONFIGURE ]]; then
- mkdir build-configure
- cd build-configure
- echo "$0: using configure + make:" $LOCAL_MAKE_EXTRA_ARGS $EXTRA_ARGS
- ../configure $LOCAL_MAKE_EXTRA_ARGS $EXTRA_ARGS
- make
- [[ $DISABLE_TESTS ]] || make test
- make clean
- make distclean
-fi
-
-if [[ $USE_LEGACY_MAKEFILES ]]; then
- echo "$0: using scripts/makefile.$CC:" $LOCAL_MAKE_EXTRA_ARGS $EXTRA_ARGS
- make -f scripts/makefile.$CC $LOCAL_MAKE_EXTRA_ARGS $EXTRA_ARGS
- [[ $DISABLE_TESTS ]] || make -f scripts/makefile.$CC $LOCAL_MAKE_EXTRA_ARGS $EXTRA_ARGS test
- make -f scripts/makefile.$CC $LOCAL_MAKE_EXTRA_ARGS $EXTRA_ARGS clean
- # TODO: use scripts/makefile.std, etc.
-fi