Skip to content

Commit 25949e1

Browse files
jamilldscho
authored andcommitted
Merge pull request #1837 from git-for-windows/azure-pipelines
Set up CI with Azure Pipelines
2 parents cf14b91 + e30e446 commit 25949e1

29 files changed

+862
-49
lines changed

Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,7 @@ TEST_BUILTINS_OBJS += test-submodule-config.o
754754
TEST_BUILTINS_OBJS += test-submodule-nested-repo-config.o
755755
TEST_BUILTINS_OBJS += test-subprocess.o
756756
TEST_BUILTINS_OBJS += test-urlmatch-normalization.o
757+
TEST_BUILTINS_OBJS += test-xml-encode.o
757758
TEST_BUILTINS_OBJS += test-wildmatch.o
758759
TEST_BUILTINS_OBJS += test-windows-named-pipe.o
759760
TEST_BUILTINS_OBJS += test-write-cache.o
@@ -2926,6 +2927,16 @@ rpm::
29262927
@false
29272928
.PHONY: rpm
29282929

2930+
artifacts-tar:: $(ALL_PROGRAMS) $(SCRIPT_LIB) $(BUILT_INS) $(OTHER_PROGRAMS) \
2931+
GIT-BUILD-OPTIONS $(TEST_PROGRAMS) $(test_bindir_programs) \
2932+
$(NO_INSTALL) $(MOFILES)
2933+
$(QUIET_SUBDIR0)templates $(QUIET_SUBDIR1) \
2934+
SHELL_PATH='$(SHELL_PATH_SQ)' PERL_PATH='$(PERL_PATH_SQ)'
2935+
test -n "$(ARTIFACTS_DIRECTORY)"
2936+
mkdir -p "$(ARTIFACTS_DIRECTORY)"
2937+
$(TAR) czf "$(ARTIFACTS_DIRECTORY)/artifacts.tar.gz" $^ templates/blt/
2938+
.PHONY: artifacts-tar
2939+
29292940
htmldocs = git-htmldocs-$(GIT_VERSION)
29302941
manpages = git-manpages-$(GIT_VERSION)
29312942
.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)