neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 3170e05d5743c5b46b14058f3c0702b4d7a43320
parent aa04efcf574ac9b8b6868a6c6793b3ec937ce263
Author: dundargoc <33953936+dundargoc@users.noreply.github.com>
Date:   Mon,  6 Feb 2023 23:42:03 +0100

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.
Diffstat:
Mci/common/build.sh | 5-----
1 file changed, 0 insertions(+), 5 deletions(-)

diff --git 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}"