mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
64f23c27e2
It's only used once for running check-single-includes (which I strongly suspect it doesn't need anyway), its core logic is incorrect since both the variables "tempsize" and "prev_temsize" are never defined and parsing ps is incredibly fragile.
32 lines
588 B
Bash
Executable File
32 lines
588 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
CI_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
source "${CI_DIR}/common/build.sh"
|
|
source "${CI_DIR}/common/suite.sh"
|
|
|
|
enter_suite 'clint'
|
|
run_test 'make clint-full' clint
|
|
exit_suite --continue
|
|
|
|
enter_suite 'lualint'
|
|
run_test 'make lualint' lualint
|
|
exit_suite --continue
|
|
|
|
enter_suite 'pylint'
|
|
run_test 'make pylint' pylint
|
|
exit_suite --continue
|
|
|
|
enter_suite 'shlint'
|
|
run_test 'make shlint' shlint
|
|
exit_suite --continue
|
|
|
|
enter_suite single-includes
|
|
run_test 'make check-single-includes' single-includes
|
|
exit_suite --continue
|
|
|
|
end_tests
|