Skip to content

Commit 9e107c9

Browse files
authored
Merge pull request #1991 from dscho/azure-pipelines-g4w
Improve Azure Pipelines support
2 parents 4d3be1d + 3346fdc commit 9e107c9

16 files changed

+343
-174
lines changed

Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -757,6 +757,7 @@ TEST_BUILTINS_OBJS += test-submodule-config.o
757757
TEST_BUILTINS_OBJS += test-submodule-nested-repo-config.o
758758
TEST_BUILTINS_OBJS += test-subprocess.o
759759
TEST_BUILTINS_OBJS += test-urlmatch-normalization.o
760+
TEST_BUILTINS_OBJS += test-xml-encode.o
760761
TEST_BUILTINS_OBJS += test-wildmatch.o
761762
TEST_BUILTINS_OBJS += test-windows-named-pipe.o
762763
TEST_BUILTINS_OBJS += test-write-cache.o
@@ -2957,6 +2958,16 @@ rpm::
29572958
@false
29582959
.PHONY: rpm
29592960

2961+
artifacts-tar:: $(ALL_PROGRAMS) $(SCRIPT_LIB) $(BUILT_INS) $(OTHER_PROGRAMS) \
2962+
GIT-BUILD-OPTIONS $(TEST_PROGRAMS) $(test_bindir_programs) \
2963+
$(NO_INSTALL) $(MOFILES)
2964+
$(QUIET_SUBDIR0)templates $(QUIET_SUBDIR1) \
2965+
SHELL_PATH='$(SHELL_PATH_SQ)' PERL_PATH='$(PERL_PATH_SQ)'
2966+
test -n "$(ARTIFACTS_DIRECTORY)"
2967+
mkdir -p "$(ARTIFACTS_DIRECTORY)"
2968+
$(TAR) czf "$(ARTIFACTS_DIRECTORY)/artifacts.tar.gz" $^ templates/blt/
2969+
.PHONY: artifacts-tar
2970+
29602971
htmldocs = git-htmldocs-$(GIT_VERSION)
29612972
manpages = git-manpages-$(GIT_VERSION)
29622973
.PHONY: dist-doc distclean

0 commit comments

Comments
 (0)