mirror of
https://github.com/neovim/neovim.git
synced 2024-12-25 13:45:15 -07:00
62774e4356
Lesser form of include-what-you-use: at least guarantees that header file did not forget to include something through some other included file. Activate run_single_includes_tests on CI. Fix some IWYU violations. References #5321
27 lines
514 B
Bash
Executable File
27 lines
514 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/test.sh"
|
|
|
|
check_core_dumps --delete quiet
|
|
|
|
prepare_build
|
|
run_single_includes_tests
|
|
build_nvim
|
|
|
|
if [ "$CLANG_SANITIZER" != "TSAN" ]; then
|
|
# Additional threads are only created when the builtin UI starts, which
|
|
# doesn't happen in the unit/functional tests
|
|
run_unittests
|
|
run_functionaltests
|
|
fi
|
|
run_oldtests
|
|
|
|
install_nvim
|
|
|
|
touch "${SUCCESS_MARKER}"
|