X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=acceptance-tests%2Fversions.mk;h=0c070a0f11462278e44c1b024c2e2408e92bc375;hb=4c144cfacfbfc8b67e78fe6d864329003bf94a93;hp=491b67e11ce18921c10b7d20e73767d5eb3db52a;hpb=19daae6f46d284d9c38655523108059376c9aa67;p=mono.git diff --git a/acceptance-tests/versions.mk b/acceptance-tests/versions.mk index 491b67e11ce..0c070a0f114 100644 --- a/acceptance-tests/versions.mk +++ b/acceptance-tests/versions.mk @@ -1,29 +1,37 @@ .PHONY: validate-versions reset-versions +SUBMODULES_CONFIG_FILE = $(top_srcdir)/acceptance-tests/SUBMODULES.json include $(top_srcdir)/scripts/submodules/versions.mk +$(eval $(call ValidateVersionTemplate,benchmarker,BENCHMARKER)) $(eval $(call ValidateVersionTemplate,roslyn,ROSLYN)) $(eval $(call ValidateVersionTemplate,coreclr,CORECLR)) $(eval $(call ValidateVersionTemplate,ms-test-suite,MSTESTSUITE)) # Bump the given submodule to the revision given by the REV make variable # If COMMIT is 1, commit the change +bump-benchmarker: __bump-benchmarker bump-roslyn: __bump-version-roslyn bump-coreclr: __bump-version-coreclr bump-ms-test-suite: __bump-version-ms-test-suite # Bump the given submodule to the branch given by the BRANCH/REMOTE_BRANCH make variables # If COMMIT is 1, commit the change +bump-branch-benchmarker: __bump-branch-benchmarker bump-branch-roslyn: __bump-branch-roslyn bump-branch-coreclr: __bump-branch-coreclr bump-branch-ms-test-suite: __bump-branch-ms-test-suite # Bump the given submodule to its current GIT version # If COMMIT is 1, commit the change +bump-current-benchmarker: __bump-current-benchmarker bump-current-roslyn: __bump-current-version-roslyn bump-current-coreclr: __bump-current-version-coreclr bump-current-ms-test-suite: __bump-current-version-ms-test-suite +commit-bump-benchmarker: + $(MAKE) bump-benchmarker COMMIT=1 + commit-bump-roslyn: $(MAKE) bump-roslyn COMMIT=1 @@ -33,6 +41,9 @@ commit-bump-coreclr: commit-bump-ms-test-suite: $(MAKE) bump-ms-test-suite COMMIT=1 +commit-bump-current-benchmarker: + $(MAKE) bump-current-benchmarker COMMIT=1 + commit-bump-current-roslyn: $(MAKE) bump-current-roslyn COMMIT=1