mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
25 lines
427 B
Bash
Executable File
25 lines
427 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"
|
|
|
|
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')
|
|
else
|
|
tests=("$@")
|
|
fi
|
|
|
|
for i in "${tests[@]}"; do
|
|
make "$i" || fail "$i"
|
|
done
|
|
|
|
end_tests
|