mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
ci: remove unnecessary file ci/script.sh
It only runs run_tests.sh and checks coverage, which can be replaced by just moving the coverage check to ci/run_tests.sh.
This commit is contained in:
parent
bb1a464467
commit
d77ec8a5c6
@ -33,3 +33,9 @@ for i in "${tests[@]}"; do
|
|||||||
done
|
done
|
||||||
|
|
||||||
end_tests
|
end_tests
|
||||||
|
|
||||||
|
if [[ -s "${GCOV_ERROR_FILE}" ]]; then
|
||||||
|
echo '=== Unexpected gcov errors: ==='
|
||||||
|
cat "${GCOV_ERROR_FILE}"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
12
ci/script.sh
12
ci/script.sh
@ -1,12 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
set -o pipefail
|
|
||||||
|
|
||||||
ci/run_tests.sh
|
|
||||||
|
|
||||||
if [[ -s "${GCOV_ERROR_FILE}" ]]; then
|
|
||||||
echo '=== Unexpected gcov errors: ==='
|
|
||||||
cat "${GCOV_ERROR_FILE}"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
Loading…
Reference in New Issue
Block a user