Skip to content

Commit

Permalink
build: run-ci makefile rule
Browse files Browse the repository at this point in the history
Adding a single rule to be called from Jenkins.

PR-URL: nodejs/node-v0.x-archive#25686
Reviewed-By: Julien Gilli <julien.gilli@joyent.com>
  • Loading branch information
orangemocha committed Jul 17, 2015
1 parent e7010bd commit 9c7bd6d
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,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)
Expand Down Expand Up @@ -385,4 +390,8 @@ 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 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 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

0 comments on commit 9c7bd6d

Please sign in to comment.