diff options
| author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-01-25 20:33:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-25 20:33:18 +0100 |
| commit | 15394b6855c3b17be06bf2bfbac7797d9c3ebf1d (patch) | |
| tree | 85c77dd94a663d7a01d2c41265f8aa428eee2563 /.github/workflows/ci.yml | |
| parent | 3c48d3c83fc21dbc0841f9210f04bdb073d73cd1 (diff) | |
| download | rneovim-15394b6855c3b17be06bf2bfbac7797d9c3ebf1d.tar.gz rneovim-15394b6855c3b17be06bf2bfbac7797d9c3ebf1d.tar.bz2 rneovim-15394b6855c3b17be06bf2bfbac7797d9c3ebf1d.zip | |
ci: fix lintc to use external dependencies instead of bundled (#21995)
Use the bundled libvterm dependency as the external package is outdated,
with the hopes of being able to use the external package once its
version meets our required version.
Co-authored-by: Christian Clason <c.clason@uni-graz.at>
Diffstat (limited to '.github/workflows/ci.yml')
| -rw-r--r-- | .github/workflows/ci.yml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b158d966e1..83ee4f0358 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -128,7 +128,7 @@ jobs: - uses: actions/checkout@v3 - name: Setup common environment variables - run: ./.github/workflows/env.sh lint + run: ./.github/workflows/env.sh lintc - name: Install apt packages run: | @@ -141,14 +141,17 @@ jobs: libtree-sitter-dev \ libunibilium-dev \ libuv1-dev \ - libvterm-dev \ lua-busted \ lua-filesystem \ lua-inspect \ lua-lpeg \ - lua-luv-dev \ lua-nvim \ luajit + # libvterm-dev \ + # lua-luv-dev + + # Remove comments from packages once we start using these external + # dependencies. See env.sh for more context. - uses: ./.github/actions/cache @@ -156,7 +159,7 @@ jobs: run: ./ci/before_script.sh - name: Build nvim - run: ./ci/run_tests.sh build_nvim + run: make - if: "!cancelled()" name: Determine if run should be aborted |