From 1083fa70f07f010c215fb4264c8c839910cbbb4f Mon Sep 17 00:00:00 2001 From: Alexis Campailla Date: Wed, 8 Jul 2015 20:06:44 +0200 Subject: [PATCH] build: run-ci makefile rule Adding a single rule to be called from Jenkins. Reviewed-By: Julien Gilli PR-URL: https://github.com/joyent/node/pull/25653 --- Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 246663648e125b..b3685e1479dac8 100644 --- a/Makefile +++ b/Makefile @@ -244,6 +244,11 @@ docopen: out/doc/api/all.html docclean: -rm -rf out/doc +run-ci: + $(PYTHON) ./configure --without-snapshot $(CONFIG_FLAGS) + $(MAKE) + $(MAKE) test-ci + RAWVER=$(shell $(PYTHON) tools/getnodeversion.py) VERSION=v$(RAWVER) NODE_DOC_VERSION=$(VERSION) @@ -443,4 +448,9 @@ cpplint: lint: jslint cpplint -.PHONY: lint cpplint jslint bench clean docopen docclean doc dist distclean check uninstall install install-includes install-bin all staticlib dynamiclib test test-all test-addons build-addons website-upload pkg blog blogclean tar binary release-only bench-http-simple bench-idle bench-all bench bench-misc bench-array bench-buffer bench-net bench-http bench-fs bench-tls +.PHONY: lint cpplint jslint bench clean docopen docclean doc dist distclean \ + check uninstall install install-includes install-bin all staticlib \ + dynamiclib test test-all test-addons build-addons website-upload pkg \ + blog blogclean tar binary release-only bench-http-simple bench-idle \ + bench-all bench bench-misc bench-array bench-buffer bench-net \ + bench-http bench-fs bench-tls run-ci