diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-06-09 17:09:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-09 08:09:24 -0700 |
commit | 6d57bb89c1ee376b60198f4a4b75430905844138 (patch) | |
tree | 5e9b522be1202cedd601e01a983cc7893b581bf4 /ci | |
parent | 9662cd7f48c5dc3b7ab5f5ca3e5b217a03faa6c9 (diff) | |
download | rneovim-6d57bb89c1ee376b60198f4a4b75430905844138.tar.gz rneovim-6d57bb89c1ee376b60198f4a4b75430905844138.tar.bz2 rneovim-6d57bb89c1ee376b60198f4a4b75430905844138.zip |
build: add a cmake target for all used linters #18543
* build: move the logic for linters to cmake
Cmake is our source of truth. We should have as much of our build
process there as possible so everyone can make use of it.
* build: remove redundant check for ninja generator
The minimum cmake version as of writing this is 3.10, which has ninja
support.
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/run_lint.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/run_lint.sh b/ci/run_lint.sh index 3a524b4ed6..ba1a61858e 100755 --- a/ci/run_lint.sh +++ b/ci/run_lint.sh @@ -12,7 +12,7 @@ rm -f "$END_MARKER" # Run all tests if no input argument is given if (($# == 0)); then - tests=('clint-full' 'lualint' 'pylint' 'shlint' 'check-single-includes') + tests=('lintcfull' 'lintlua' 'lintpy' 'lintsh' 'check-single-includes') else tests=("$@") fi |