aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2023-02-06 23:42:03 +0100
committerGitHub <noreply@github.com>2023-02-06 23:42:03 +0100
commit3170e05d5743c5b46b14058f3c0702b4d7a43320 (patch)
tree2e90b1a7c94165d7701a88ef954256515b3bb009
parentaa04efcf574ac9b8b6868a6c6793b3ec937ce263 (diff)
downloadrneovim-3170e05d5743c5b46b14058f3c0702b4d7a43320.tar.gz
rneovim-3170e05d5743c5b46b14058f3c0702b4d7a43320.tar.bz2
rneovim-3170e05d5743c5b46b14058f3c0702b4d7a43320.zip
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.
-rw-r--r--ci/common/build.sh5
1 files changed, 0 insertions, 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}"