From: Mostyn Bramley-Moore Date: Sun, 18 May 2025 16:55:32 +0000 (+0200) Subject: Remove long-unused travis CI script (#2615) X-Git-Tag: v3.8.0~13 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=fe41cec3dabdb159e1e114c99fb010d9ae9ea6a8;p=thirdparty%2Flibarchive.git Remove long-unused travis CI script (#2615) Support for travis CI was removed in 2019, this script hasn't been used since. --- diff --git a/build/ci/travis_ci.sh b/build/ci/travis_ci.sh deleted file mode 100755 index 8ed0543df..000000000 --- a/build/ci/travis_ci.sh +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh -set -e -UNAME=`uname` -CURDIR=`pwd` -SRCDIR="${SRCDIR:-`pwd`}" -if [ -z "${BUILDDIR}" ]; then - BUILDDIR="${CURDIR}/build_ci/${BS}" -fi -mkdir -p "${BUILDDIR}" -cd "${BUILDDIR}" -case "$UNAME" in - MSYS*) - if [ "${BS}" = "msbuild" ]; then - set -x - cmake -G "Visual Studio 15 2017" -D CMAKE_BUILD_TYPE="Release" "${SRCDIR}" - cmake --build . --target ALL_BUILD - # Until fixed, we don't run tests on Windows (lots of fails + timeout) - #export SKIP_TEST_FUZZ=1 - #cmake --build . --target RUN_TESTS - set +x - elif [ "${BS}" = "mingw" ]; then - set -x - cmake -G "MSYS Makefiles" -D CMAKE_C_COMPILER="${CC}" -D CMAKE_MAKE_PROGRAM="mingw32-make" -D CMAKE_BUILD_TYPE="Release" "${SRCDIR}" - mingw32-make - #export SKIP_TEST_FUZZ=1 - #mingw32-make test - set +x - else - echo "Unknown or unspecified build type: ${BS}" - exit 1 - fi - ;; -esac