Skip to content
This repository was archived by the owner on Apr 22, 2023. It is now read-only.

Commit 9c7bd6d

Browse files
committed
build: run-ci makefile rule
Adding a single rule to be called from Jenkins. PR-URL: #25686 Reviewed-By: Julien Gilli <[email protected]>
1 parent e7010bd commit 9c7bd6d

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Makefile

+10-1
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,11 @@ docopen: out/doc/api/all.html
199199
docclean:
200200
-rm -rf out/doc
201201

202+
run-ci:
203+
$(PYTHON) ./configure --without-snapshot $(CONFIG_FLAGS)
204+
$(MAKE)
205+
$(MAKE) test-ci
206+
202207
RAWVER=$(shell $(PYTHON) tools/getnodeversion.py)
203208
VERSION=v$(RAWVER)
204209
NODE_DOC_VERSION=$(VERSION)
@@ -385,4 +390,8 @@ cpplint:
385390

386391
lint: jslint cpplint
387392

388-
.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
393+
.PHONY: lint cpplint jslint bench clean docopen docclean doc dist distclean \
394+
check uninstall install install-includes install-bin all staticlib \
395+
dynamiclib test test-all website-upload pkg blog blogclean tar binary \
396+
release-only bench-http-simple bench-idle bench-all bench bench-misc \
397+
bench-array bench-buffer bench-net bench-http bench-fs bench-tls run-ci

0 commit comments

Comments
 (0)