]> git.ipfire.org Git - thirdparty/git.git/commitdiff
ci: stop linking the `prove` cache
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Mon, 5 May 2025 07:39:48 +0000 (07:39 +0000)
committerJunio C Hamano <gitster@pobox.com>
Mon, 5 May 2025 21:15:19 +0000 (14:15 -0700)
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>
ci/run-build-and-tests.sh
ci/run-test-slice.sh

index 1c698467235943639ea91c8328382bacd33a0fb0..066d4c4c8547e761d04a9a849db0f86f9817b783 100755 (executable)
@@ -5,11 +5,6 @@
 
 . ${0%/*}/lib.sh
 
-case "$CI_OS_NAME" in
-windows*) cmd //c mklink //j t\\.prove "$(cygpath -aw "$cache_dir/.prove")";;
-*) ln -s "$cache_dir/.prove" t/.prove;;
-esac
-
 run_tests=t
 
 case "$jobname" in
index e167e646f79e3df3d81fcb26cf61e6ec47d3ecc4..0444c79c023c8208984b5a54fda9acfe337fcff6 100755 (executable)
@@ -5,11 +5,6 @@
 
 . ${0%/*}/lib.sh
 
-case "$CI_OS_NAME" in
-windows*) cmd //c mklink //j t\\.prove "$(cygpath -aw "$cache_dir/.prove")";;
-*) ln -s "$cache_dir/.prove" t/.prove;;
-esac
-
 group "Run tests" make --quiet -C t T="$(cd t &&
        ./helper/test-tool path-utils slice-tests "$1" "$2" t[0-9]*.sh |
        tr '\n' ' ')" ||