Skip to content

Commit 7297a73

Browse files
committed
Merge branch 'js/vsts-ci' into next
Prepare to run test suite on Azure Pipeline. * js/vsts-ci: (21 commits) ci: parallelize testing on Windows ci: speed up Windows phase tests: optionally skip bin-wrappers/ t0061: workaround issues with --with-dashes and RUNTIME_PREFIX tests: add t/helper/ to the PATH with --with-dashes mingw: try to work around issues with the test cleanup tests: include detailed trace logs with --write-junit-xml upon failure tests: avoid calling Perl just to determine file sizes README: add a build badge (status of the Azure Pipelines build) mingw: be more generous when wrapping up the setitimer() emulation ci: use git-sdk-64-minimal build artifact ci: add a Windows job to the Azure Pipelines definition Add a build definition for Azure DevOps ci/lib.sh: add support for Azure Pipelines tests: optionally write results as JUnit-style .xml test-date: add a subcommand to measure times in shell scripts ci: use a junction on Windows instead of a symlink ci: inherit --jobs via MAKEFLAGS in run-build-and-tests ci/lib.sh: encapsulate Travis-specific things ci: rename the library of common functions ...
2 parents a0a1e30 + b819f1d commit 7297a73

29 files changed

+862
-49
lines changed

Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -763,6 +763,7 @@ TEST_BUILTINS_OBJS += test-submodule-config.o
763763
TEST_BUILTINS_OBJS += test-submodule-nested-repo-config.o
764764
TEST_BUILTINS_OBJS += test-subprocess.o
765765
TEST_BUILTINS_OBJS += test-urlmatch-normalization.o
766+
TEST_BUILTINS_OBJS += test-xml-encode.o
766767
TEST_BUILTINS_OBJS += test-wildmatch.o
767768
TEST_BUILTINS_OBJS += test-windows-named-pipe.o
768769
TEST_BUILTINS_OBJS += test-write-cache.o
@@ -2948,6 +2949,16 @@ rpm::
29482949
@false
29492950
.PHONY: rpm
29502951

2952+
artifacts-tar:: $(ALL_PROGRAMS) $(SCRIPT_LIB) $(BUILT_INS) $(OTHER_PROGRAMS) \
2953+
GIT-BUILD-OPTIONS $(TEST_PROGRAMS) $(test_bindir_programs) \
2954+
$(NO_INSTALL) $(MOFILES)
2955+
$(QUIET_SUBDIR0)templates $(QUIET_SUBDIR1) \
2956+
SHELL_PATH='$(SHELL_PATH_SQ)' PERL_PATH='$(PERL_PATH_SQ)'
2957+
test -n "$(ARTIFACTS_DIRECTORY)"
2958+
mkdir -p "$(ARTIFACTS_DIRECTORY)"
2959+
$(TAR) czf "$(ARTIFACTS_DIRECTORY)/artifacts.tar.gz" $^ templates/blt/
2960+
.PHONY: artifacts-tar
2961+
29512962
htmldocs = git-htmldocs-$(GIT_VERSION)
29522963
manpages = git-manpages-$(GIT_VERSION)
29532964
.PHONY: dist-doc distclean

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![Build Status](https://dev.azure.com/git/git/_apis/build/status/test-git.git)](https://dev.azure.com/git/git/_build/latest?definitionId=2)
2+
13
Git - fast, scalable, distributed revision control system
24
=========================================================
35

0 commit comments

Comments
 (0)