diff options
| author | Lewis Russell <lewis6991@gmail.com> | 2023-04-04 12:58:16 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-04 13:58:16 +0200 |
| commit | 090ade4af6344a7bc4ee56a8052c0739c0428c04 (patch) | |
| tree | 03da56a9e250e1928541f5997c35907f147899f4 /.github/workflows | |
| parent | 469e6bfc56aa18350bfab13bef8a51b02a5b3c65 (diff) | |
| download | rneovim-090ade4af6344a7bc4ee56a8052c0739c0428c04.tar.gz rneovim-090ade4af6344a7bc4ee56a8052c0739c0428c04.tar.bz2 rneovim-090ade4af6344a7bc4ee56a8052c0739c0428c04.zip | |
refactor(treesitter): delegate region calculation to treesitter (#22576)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0d18f874c4..7794e07077 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -376,13 +376,13 @@ jobs: libluajit-5.1-dev \ libmsgpack-dev \ libtermkey-dev \ - libtree-sitter-dev \ libunibilium-dev \ libuv1-dev \ lua-filesystem \ lua-lpeg \ lua-mpack \ luajit + # libtree-sitter-dev \ # libvterm-dev \ # lua-luv-dev @@ -397,7 +397,10 @@ jobs: # dependencies don't have the required version available. We use the # bundled versions for these with the hopes of being able to remove them # later on. - cmake -S cmake.deps -B .deps -G Ninja -D USE_BUNDLED=OFF -D USE_BUNDLED_LUV=ON -D USE_BUNDLED_LIBVTERM=ON + cmake -S cmake.deps -B .deps -G Ninja -D USE_BUNDLED=OFF \ + -D USE_BUNDLED_LUV=ON \ + -D USE_BUNDLED_LIBVTERM=ON \ + -D USE_BUNDLED_TS=ON cmake --build .deps - name: Build |