From 3170e05d5743c5b46b14058f3c0702b4d7a43320 Mon Sep 17 00:00:00 2001 From: dundargoc <33953936+dundargoc@users.noreply.github.com> Date: Mon, 6 Feb 2023 23:42:03 +0100 Subject: [PATCH] build: don't build libnvim when running the CI (#22149) It shouldn't be sneakily run alongside the nvim build. If it's to be used it should be done in a separate step. --- ci/common/build.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ci/common/build.sh b/ci/common/build.sh index 8b91af69b3..b1ea2270c0 100644 --- a/ci/common/build.sh +++ b/ci/common/build.sh @@ -47,11 +47,6 @@ build_nvim() { echo "Building nvim." ninja nvim || exit 1 - if test "$CLANG_SANITIZER" != "TSAN" ; then - echo "Building libnvim." - ninja libnvim || exit 1 - fi - # Invoke nvim to trigger *San early. if ! (bin/nvim --version && bin/nvim -u NONE -e -cq | cat -vet) ; then check_sanitizer "${LOG_DIR}"