Skip to content

Commit f05d18d

Browse files
committed
build: run-ci makefile rule
Adding a single rule to be called from Jenkins.
1 parent b888609 commit f05d18d

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

Makefile

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,13 @@ docopen: out/doc/api/all.html
244244
docclean:
245245
-rm -rf out/doc
246246

247+
configure-ci:
248+
$(PYTHON) ./configure --without-snapshot $(CONFIG_FLAGS)
249+
250+
run-ci: configure-ci
251+
$(MAKE)
252+
$(MAKE) test-ci
253+
247254
RAWVER=$(shell $(PYTHON) tools/getnodeversion.py)
248255
VERSION=v$(RAWVER)
249256
NODE_DOC_VERSION=$(VERSION)
@@ -443,4 +450,9 @@ cpplint:
443450

444451
lint: jslint cpplint
445452

446-
.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
453+
.PHONY: lint cpplint jslint bench clean docopen docclean doc dist distclean \
454+
check uninstall install install-includes install-bin all staticlib \
455+
dynamiclib test test-all test-addons build-addons website-upload pkg \
456+
blog blogclean tar binary release-only bench-http-simple bench-idle \
457+
bench-all bench bench-misc bench-array bench-buffer bench-net \
458+
bench-http bench-fs bench-tls configure-ci run-ci

0 commit comments

Comments
 (0)