mirror of
https://github.com/git-for-windows/git.git
synced 2026-03-21 08:23:24 -05:00
Backport a couple fixes to make the CI build run again (so much for reproducible builds...). Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
17 lines
347 B
Bash
Executable File
17 lines
347 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Test Git in parallel
|
|
#
|
|
|
|
. ${0%/*}/lib.sh
|
|
|
|
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' ' ')" ||
|
|
handle_failed_tests
|
|
|
|
# Run the git subtree tests only if main tests succeeded
|
|
test 0 != "$1" || make -C contrib/subtree test
|
|
|
|
check_unignored_build_artifacts
|