Merge pull request #3118 from kumpera/fix_getname
[mono.git] / acceptance-tests / versions.mk
1 .PHONY: validate-versions reset-versions
2
3 include $(top_srcdir)/scripts/submodules/versions.mk
4
5 $(eval $(call ValidateVersionTemplate,roslyn,ROSLYN))
6 $(eval $(call ValidateVersionTemplate,coreclr,CORECLR))
7 $(eval $(call ValidateVersionTemplate,ms-test-suite,MSTESTSUITE))
8
9 # Bump the given submodule to the revision given by the REV make variable
10 # If COMMIT is 1, commit the change
11 bump-roslyn: __bump-version-roslyn
12 bump-coreclr: __bump-version-coreclr
13 bump-ms-test-suite: __bump-version-ms-test-suite
14
15 # Bump the given submodule to the branch given by the BRANCH/REMOTE_BRANCH make variables
16 # If COMMIT is 1, commit the change
17 bump-branch-roslyn: __bump-branch-roslyn
18 bump-branch-coreclr: __bump-branch-coreclr
19 bump-branch-ms-test-suite: __bump-branch-ms-test-suite
20
21 # Bump the given submodule to its current GIT version
22 # If COMMIT is 1, commit the change
23 bump-current-roslyn: __bump-current-version-roslyn
24 bump-current-coreclr: __bump-current-version-coreclr
25 bump-current-ms-test-suite: __bump-current-version-ms-test-suite
26
27 commit-bump-roslyn:
28         $(MAKE) bump-roslyn COMMIT=1
29
30 commit-bump-coreclr:
31         $(MAKE) bump-coreclr COMMIT=1
32
33 commit-bump-ms-test-suite:
34         $(MAKE) bump-ms-test-suite COMMIT=1
35
36 commit-bump-current-roslyn:
37         $(MAKE) bump-current-roslyn COMMIT=1
38
39 commit-bump-current-coreclr:
40         $(MAKE) bump-current-coreclr COMMIT=1
41
42 commit-bump-current-ms-test-suite:
43         $(MAKE) bump-current-ms-test-suite COMMIT=1