mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07:00
55682710a9
MinGW builds in Travis have been disabled for a while now, and some of the upcoming patches will break cross compilation even further.
23 lines
441 B
Bash
Executable File
23 lines
441 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"
|
|
|
|
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}"
|