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.
This commit is contained in:
dundargoc 2023-02-06 23:42:03 +01:00 committed by GitHub
parent aa04efcf57
commit 3170e05d57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 5 deletions

View File

@ -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}"