From dd71e91355cfd1578542fa4355bcc10a4e103f42 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Wed, 27 Nov 2024 10:49:28 +0100 Subject: [PATCH] Delete .travis.sh --- .travis.sh | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .travis.sh diff --git a/.travis.sh b/.travis.sh deleted file mode 100644 index 86f6727..0000000 --- a/.travis.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash -function generate() { - OPTIONS="" - - if [ "$ASAN" = "ON" ] ; then - OPTIONS="$OPTIONS -DCPPCORE_ASAN=ON" - else - OPTIONS="$OPTIONS -DCPPCORE_ASAN=OFF" - fi - - if [ "$UBSAN" = "ON" ] ; then - OPTIONS="$OPTIONS -DCPPCORE_UBSAN=ON" - else - OPTIONS="$OPTIONS -DCPPCORE_UBSAN=OFF" - fi - - cd build - cmake -G "Unix Makefiles" $OPTIONS -} - -if [ "$TRAVIS_OS_NAME" = "linux" ]; then - if [ "$ANALYZE" = "ON" ] ; then - if [ "$CC" = "clang" ]; then - cd build - scan-build cmake -G "Unix Makefiles" - scan-build --status-bugs make -j4 - fi - else - generate \ - && make -j4 && cd bin && ./cppcore_unittest - fi -fi