Git fork

ci: stop linking the `prove` cache

It is not useful because we do not have any persisted directory anymore,
not since dropping our Travis CI support.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>

authored by

Johannes Schindelin and committed by
Junio C Hamano
9c1ce127 d50a5e89

-10
-5
ci/run-build-and-tests.sh
··· 5 5 6 6 . ${0%/*}/lib.sh 7 7 8 - case "$CI_OS_NAME" in 9 - windows*) cmd //c mklink //j t\\.prove "$(cygpath -aw "$cache_dir/.prove")";; 10 - *) ln -s "$cache_dir/.prove" t/.prove;; 11 - esac 12 - 13 8 run_tests=t 14 9 15 10 case "$jobname" in
-5
ci/run-test-slice.sh
··· 5 5 6 6 . ${0%/*}/lib.sh 7 7 8 - case "$CI_OS_NAME" in 9 - windows*) cmd //c mklink //j t\\.prove "$(cygpath -aw "$cache_dir/.prove")";; 10 - *) ln -s "$cache_dir/.prove" t/.prove;; 11 - esac 12 - 13 8 group "Run tests" make --quiet -C t T="$(cd t && 14 9 ./helper/test-tool path-utils slice-tests "$1" "$2" t[0-9]*.sh | 15 10 tr '\n' ' ')" ||