Remove any mentions of scam CI

This commit is contained in:
Nekotekina 2020-11-24 03:23:01 +03:00
parent 3f028fbb83
commit b55c759f71
5 changed files with 6 additions and 25 deletions

View file

@ -5,14 +5,6 @@
# shellcheck disable=SC2046
git submodule -q update --init --depth 1 $(awk '/path/ && !/llvm/ { print $3 }' .gitmodules)
# Prefer newer Clang on TravisCI (see also .ci/install-freebsd.sh)
if [ -n "$TRAVIS" ]; then
fetch https://github.com/llvm/llvm-project/releases/download/llvmorg-11.0.0/libcxx-11.0.0.src.tar.xz
tar xf libcxx-11.0.0.src.tar.xz
export CC=clang11 CXX=clang++11
export CXXFLAGS="$CXXFLAGS -nostdinc++ -isystem $PWD/libcxx-11.0.0.src/include"
fi
CONFIGURE_ARGS="
-DWITH_LLVM=OFF
-DUSE_PRECOMPILED_HEADERS=OFF