2012-01-18 02:02:15 +04:00
|
|
|
-include config.mk
|
|
|
|
|
2011-11-15 07:02:44 +04:00
|
|
|
BUILDTYPE ?= Release
|
2012-01-09 00:17:28 +04:00
|
|
|
PYTHON ?= python
|
2012-04-22 00:40:48 +04:00
|
|
|
DESTDIR ?=
|
2012-08-03 00:35:41 +04:00
|
|
|
SIGN ?=
|
2013-04-23 22:17:09 +04:00
|
|
|
PREFIX ?= /usr/local
|
2015-08-26 13:38:48 +03:00
|
|
|
FLAKY_TESTS ?= run
|
2015-08-26 13:41:16 +03:00
|
|
|
TEST_CI_ARGS ?=
|
2015-08-13 19:14:34 +03:00
|
|
|
STAGINGSERVER ?= node-www
|
2016-10-09 17:24:23 +03:00
|
|
|
LOGLEVEL ?= silent
|
2015-06-10 10:05:26 +03:00
|
|
|
OSTYPE := $(shell uname -s | tr '[A-Z]' '[a-z]')
|
2017-09-29 04:29:54 +03:00
|
|
|
COVTESTS ?= test-cov
|
2017-02-21 10:43:21 +03:00
|
|
|
GTEST_FILTER ?= "*"
|
2017-05-15 21:24:43 +03:00
|
|
|
GNUMAKEFLAGS += --no-print-directory
|
2017-10-09 21:30:38 +03:00
|
|
|
GCOV ?= gcov
|
2018-01-08 18:31:07 +03:00
|
|
|
PWD = $(CURDIR)
|
2009-12-06 09:35:26 +03:00
|
|
|
|
2016-04-15 06:15:40 +03:00
|
|
|
ifdef JOBS
|
|
|
|
PARALLEL_ARGS = -j $(JOBS)
|
2018-04-18 12:18:38 +03:00
|
|
|
else
|
|
|
|
PARALLEL_ARGS = -J
|
2016-04-15 06:15:40 +03:00
|
|
|
endif
|
|
|
|
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 07:39:06 +03:00
|
|
|
ifdef ENABLE_V8_TAP
|
2016-06-28 21:35:18 +03:00
|
|
|
TAP_V8 := --junitout $(PWD)/v8-tap.xml
|
|
|
|
TAP_V8_INTL := --junitout $(PWD)/v8-intl-tap.xml
|
|
|
|
TAP_V8_BENCHMARKS := --junitout $(PWD)/v8-benchmarks-tap.xml
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 07:39:06 +03:00
|
|
|
endif
|
|
|
|
|
2016-03-01 01:44:31 +03:00
|
|
|
V8_TEST_OPTIONS = $(V8_EXTRA_TEST_OPTIONS)
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 07:39:06 +03:00
|
|
|
ifdef DISABLE_V8_I18N
|
|
|
|
V8_BUILD_OPTIONS += i18nsupport=off
|
|
|
|
endif
|
|
|
|
|
2017-10-09 21:30:38 +03:00
|
|
|
ifeq ($(OSTYPE), darwin)
|
|
|
|
GCOV = xcrun llvm-cov gcov
|
|
|
|
endif
|
|
|
|
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 07:39:06 +03:00
|
|
|
BUILDTYPE_LOWER := $(shell echo $(BUILDTYPE) | tr '[A-Z]' '[a-z]')
|
|
|
|
|
2014-08-31 02:59:05 +04:00
|
|
|
# Determine EXEEXT
|
2014-10-29 17:43:09 +03:00
|
|
|
EXEEXT := $(shell $(PYTHON) -c \
|
|
|
|
"import sys; print('.exe' if sys.platform == 'win32' else '')")
|
2014-08-31 02:59:05 +04:00
|
|
|
|
2015-08-13 19:14:34 +03:00
|
|
|
NODE_EXE = node$(EXEEXT)
|
2015-11-19 01:40:03 +03:00
|
|
|
NODE ?= ./$(NODE_EXE)
|
2015-08-13 19:14:34 +03:00
|
|
|
NODE_G_EXE = node_g$(EXEEXT)
|
2016-09-05 23:34:06 +03:00
|
|
|
NPM ?= ./deps/npm/bin/npm-cli.js
|
2013-02-12 11:22:12 +04:00
|
|
|
|
2015-08-13 18:30:01 +03:00
|
|
|
# Flags for packaging.
|
|
|
|
BUILD_DOWNLOAD_FLAGS ?= --download=all
|
|
|
|
BUILD_INTL_FLAGS ?= --with-intl=small-icu
|
|
|
|
BUILD_RELEASE_FLAGS ?= $(BUILD_DOWNLOAD_FLAGS) $(BUILD_INTL_FLAGS)
|
|
|
|
|
2012-07-25 03:19:08 +04:00
|
|
|
# Default to verbose builds.
|
|
|
|
# To do quiet/pretty builds, run `make V=` to set V to an empty string,
|
|
|
|
# or set the V environment variable to an empty string.
|
|
|
|
V ?= 1
|
|
|
|
|
2018-08-16 09:08:00 +03:00
|
|
|
# Use -e to double check in case it's a broken link
|
|
|
|
# Use $(PWD) so we can cd to anywhere before calling this
|
|
|
|
available-node = \
|
|
|
|
if [ -x $(PWD)/$(NODE) ] && [ -e $(PWD)/$(NODE) ]; then \
|
|
|
|
$(PWD)/$(NODE) $(1); \
|
|
|
|
elif [ -x `which node` ] && [ -e `which node` ] && [ `which node` ]; then \
|
|
|
|
`which node` $(1); \
|
|
|
|
else \
|
|
|
|
echo "No available node, cannot run \"node $(1)\""; \
|
|
|
|
exit 1; \
|
|
|
|
fi;
|
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: all
|
2012-01-27 02:45:16 +04:00
|
|
|
# BUILDTYPE=Debug builds both release and debug builds. If you want to compile
|
|
|
|
# just the debug build, run `make -C out BUILDTYPE=Debug` instead.
|
2011-12-17 15:23:17 +04:00
|
|
|
ifeq ($(BUILDTYPE),Release)
|
2018-09-30 20:44:55 +03:00
|
|
|
all: $(NODE_EXE) ## Default target, builds node in out/Release/node.
|
2011-12-17 15:23:17 +04:00
|
|
|
else
|
2018-09-30 20:44:55 +03:00
|
|
|
all: $(NODE_EXE) $(NODE_G_EXE)
|
2011-12-17 15:23:17 +04:00
|
|
|
endif
|
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: help
|
2017-11-26 17:41:56 +03:00
|
|
|
# To add a target to the help, add a double comment (##) on the target line.
|
|
|
|
help: ## Print help for targets with comments.
|
|
|
|
@printf "For more targets and info see the comments in the Makefile.\n\n"
|
|
|
|
@grep -E '^[a-zA-Z0-9._-]+:.*?## .*$$' Makefile | sort | \
|
|
|
|
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-15s\033[0m %s\n", $$1, $$2}'
|
|
|
|
|
2018-01-23 13:49:25 +03:00
|
|
|
# The .PHONY is needed to ensure that we recursively use the out/Makefile
|
|
|
|
# to check for changes.
|
|
|
|
.PHONY: $(NODE_EXE) $(NODE_G_EXE)
|
2011-12-17 15:23:17 +04:00
|
|
|
|
2018-01-23 13:49:25 +03:00
|
|
|
# The -r/-L check stops it recreating the link if it is already in place,
|
|
|
|
# otherwise $(NODE_EXE) being a .PHONY target means it is always re-run.
|
|
|
|
# Without the check there is a race condition between the link being deleted
|
|
|
|
# and recreated which can break the addons build when running test-ci
|
|
|
|
# See comments on the build-addons target for some more info
|
|
|
|
$(NODE_EXE): config.gypi out/Makefile
|
2018-08-22 14:56:21 +03:00
|
|
|
$(MAKE) -C out BUILDTYPE=Release V=$(V)
|
|
|
|
if [ ! -r $@ -o ! -L $@ ]; then ln -fs out/Release/$(NODE_EXE) $@; fi
|
2011-12-17 15:23:17 +04:00
|
|
|
|
2018-01-23 13:49:25 +03:00
|
|
|
$(NODE_G_EXE): config.gypi out/Makefile
|
2018-08-22 14:56:21 +03:00
|
|
|
$(MAKE) -C out BUILDTYPE=Debug V=$(V)
|
|
|
|
if [ ! -r $@ -o ! -L $@ ]; then ln -fs out/Debug/$(NODE_EXE) $@; fi
|
2010-10-24 18:15:05 +04:00
|
|
|
|
2018-06-18 20:02:57 +03:00
|
|
|
CODE_CACHE_DIR ?= out/$(BUILDTYPE)/obj/gen
|
|
|
|
CODE_CACHE_FILE ?= $(CODE_CACHE_DIR)/node_code_cache.cc
|
|
|
|
|
2018-08-09 13:22:07 +03:00
|
|
|
ifeq ($(BUILDTYPE),Debug)
|
|
|
|
CONFIG_FLAGS += --debug
|
|
|
|
endif
|
2018-06-18 20:02:57 +03:00
|
|
|
.PHONY: with-code-cache
|
|
|
|
with-code-cache:
|
2018-08-09 13:22:07 +03:00
|
|
|
@echo $(CONFIG_FLAGS)
|
|
|
|
$(PYTHON) ./configure $(CONFIG_FLAGS)
|
2018-06-18 20:02:57 +03:00
|
|
|
$(MAKE)
|
|
|
|
mkdir -p $(CODE_CACHE_DIR)
|
|
|
|
out/$(BUILDTYPE)/$(NODE_EXE) --expose-internals tools/generate_code_cache.js $(CODE_CACHE_FILE)
|
2018-08-09 13:22:07 +03:00
|
|
|
$(PYTHON) ./configure --code-cache-path $(CODE_CACHE_FILE) $(CONFIG_FLAGS)
|
2018-06-18 20:02:57 +03:00
|
|
|
$(MAKE)
|
|
|
|
|
|
|
|
.PHONY: test-code-cache
|
|
|
|
test-code-cache: with-code-cache
|
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) code-cache
|
|
|
|
|
2018-01-23 13:49:25 +03:00
|
|
|
out/Makefile: common.gypi deps/uv/uv.gyp deps/http_parser/http_parser.gyp \
|
2016-06-30 19:13:07 +03:00
|
|
|
deps/zlib/zlib.gyp deps/v8/gypfiles/toolchain.gypi \
|
2018-01-26 05:35:26 +03:00
|
|
|
deps/v8/gypfiles/features.gypi deps/v8/gypfiles/v8.gyp node.gyp \
|
2018-01-23 13:49:25 +03:00
|
|
|
config.gypi
|
2013-11-11 03:15:34 +04:00
|
|
|
$(PYTHON) tools/gyp_node.py -f make
|
2012-09-04 18:03:01 +04:00
|
|
|
|
2018-08-22 02:25:26 +03:00
|
|
|
config.gypi: configure configure.py
|
2018-06-16 22:28:34 +03:00
|
|
|
@if [ -x config.status ]; then \
|
|
|
|
./config.status; \
|
|
|
|
else \
|
|
|
|
echo Missing or stale $@, please run ./$<; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
2018-01-23 13:49:25 +03:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: install
|
2017-11-26 17:41:56 +03:00
|
|
|
install: all ## Installs node into $PREFIX (default=/usr/local).
|
2013-04-23 22:17:09 +04:00
|
|
|
$(PYTHON) tools/install.py $@ '$(DESTDIR)' '$(PREFIX)'
|
2011-12-14 17:00:10 +04:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: uninstall
|
2017-11-26 17:41:56 +03:00
|
|
|
uninstall: ## Uninstalls node from $PREFIX (default=/usr/local).
|
2013-04-23 22:17:09 +04:00
|
|
|
$(PYTHON) tools/install.py $@ '$(DESTDIR)' '$(PREFIX)'
|
2011-11-23 16:19:19 +04:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: clean
|
2017-11-26 17:41:56 +03:00
|
|
|
clean: ## Remove build artifacts.
|
2017-04-01 20:12:33 +03:00
|
|
|
$(RM) -r out/Makefile $(NODE_EXE) $(NODE_G_EXE) out/$(BUILDTYPE)/$(NODE_EXE) \
|
2017-10-22 17:43:05 +03:00
|
|
|
out/$(BUILDTYPE)/node.exp
|
2017-04-01 20:12:33 +03:00
|
|
|
@if [ -d out ]; then find out/ -name '*.o' -o -name '*.a' -o -name '*.d' | xargs $(RM) -r; fi
|
|
|
|
$(RM) -r node_modules
|
|
|
|
@if [ -d deps/icu ]; then echo deleting deps/icu; $(RM) -r deps/icu; fi
|
|
|
|
$(RM) test.tap
|
2017-10-22 17:43:05 +03:00
|
|
|
# Next one is legacy remove this at some point
|
|
|
|
$(RM) -r test/tmp*
|
|
|
|
$(RM) -r test/.tmp*
|
|
|
|
$(MAKE) test-addons-clean
|
2018-07-13 10:00:19 +03:00
|
|
|
$(MAKE) bench-addons-clean
|
2009-10-04 00:42:03 +04:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: distclean
|
2011-11-15 07:02:44 +04:00
|
|
|
distclean:
|
2017-04-01 20:12:33 +03:00
|
|
|
$(RM) -r out
|
|
|
|
$(RM) config.gypi icu_config.gypi config_fips.gypi
|
|
|
|
$(RM) config.mk
|
|
|
|
$(RM) -r $(NODE_EXE) $(NODE_G_EXE)
|
|
|
|
$(RM) -r node_modules
|
|
|
|
$(RM) -r deps/icu
|
|
|
|
$(RM) -r deps/icu4c*.tgz deps/icu4c*.zip deps/icu-tmp
|
|
|
|
$(RM) $(BINARYTAR).* $(TARBALL).*
|
2010-10-04 13:11:27 +04:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: check
|
2015-03-20 01:15:54 +03:00
|
|
|
check: test
|
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: coverage-clean
|
2017-01-10 12:21:30 +03:00
|
|
|
# Remove files generated by running coverage, put the non-instrumented lib back
|
|
|
|
# in place
|
|
|
|
coverage-clean:
|
2017-04-01 20:12:33 +03:00
|
|
|
if [ -d lib_ ]; then $(RM) -r lib; mv lib_ lib; fi
|
|
|
|
$(RM) -r node_modules
|
2018-01-10 17:07:54 +03:00
|
|
|
$(RM) -r gcovr build
|
2017-04-01 20:12:33 +03:00
|
|
|
$(RM) -r out/$(BUILDTYPE)/.coverage
|
2017-09-19 14:52:23 +03:00
|
|
|
$(RM) -r .cov_tmp
|
2018-01-24 02:37:59 +03:00
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/gen/*.gcda
|
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/src/*.gcda
|
2017-04-01 20:12:33 +03:00
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/src/tracing/*.gcda
|
2018-01-24 02:37:59 +03:00
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/gen/*.gcno
|
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/src/*.gcno
|
2017-10-09 21:30:38 +03:00
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/src/tracing/*.gcno
|
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/cctest/src/*.gcno
|
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/cctest/test/cctest/*.gcno
|
2017-01-10 12:21:30 +03:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: coverage
|
2017-01-10 12:21:30 +03:00
|
|
|
# Build and test with code coverage reporting. Leave the lib directory
|
|
|
|
# instrumented for any additional runs the user may want to make.
|
|
|
|
# For C++ coverage reporting, this needs to be run in conjunction with configure
|
|
|
|
# --coverage. html coverage reports will be created under coverage/
|
2017-11-12 22:54:28 +03:00
|
|
|
# Related CI job: node-test-commit-linux-coverage
|
2017-11-26 17:41:56 +03:00
|
|
|
coverage: coverage-test ## Run the tests and generate a coverage report.
|
2017-01-10 12:21:30 +03:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: coverage-build
|
2017-01-10 12:21:30 +03:00
|
|
|
coverage-build: all
|
|
|
|
mkdir -p node_modules
|
2017-09-05 12:40:27 +03:00
|
|
|
if [ ! -d node_modules/nyc ]; then \
|
2018-10-20 00:26:40 +03:00
|
|
|
$(NODE) ./deps/npm install nyc@13 --no-save --no-package-lock; fi
|
2018-03-02 21:39:10 +03:00
|
|
|
if [ ! -d gcovr ]; then git clone -b 3.4 --depth=1 \
|
2018-11-04 08:42:44 +03:00
|
|
|
--single-branch https://github.com/gcovr/gcovr.git; fi
|
2018-01-10 17:07:54 +03:00
|
|
|
if [ ! -d build ]; then git clone --depth=1 \
|
2018-01-05 02:42:59 +03:00
|
|
|
--single-branch https://github.com/nodejs/build.git; fi
|
2018-03-02 21:39:10 +03:00
|
|
|
if [ ! -f gcovr/scripts/gcovr.orig ]; then \
|
|
|
|
(cd gcovr && patch -N -p1 < \
|
|
|
|
"$(CURDIR)/build/jenkins/scripts/coverage/gcovr-patches-3.4.diff"); fi
|
2017-04-01 20:12:33 +03:00
|
|
|
if [ -d lib_ ]; then $(RM) -r lib; mv lib_ lib; fi
|
2017-01-10 12:21:30 +03:00
|
|
|
mv lib lib_
|
2018-06-01 03:33:21 +03:00
|
|
|
NODE_DEBUG=nyc $(NODE) ./node_modules/.bin/nyc instrument --extension .js \
|
|
|
|
--extension .mjs --exit-on-error lib_/ lib/
|
2017-01-10 12:21:30 +03:00
|
|
|
$(MAKE)
|
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: coverage-test
|
2017-01-10 12:21:30 +03:00
|
|
|
coverage-test: coverage-build
|
2017-04-01 20:12:33 +03:00
|
|
|
$(RM) -r out/$(BUILDTYPE)/.coverage
|
|
|
|
$(RM) -r .cov_tmp
|
2018-01-24 02:37:59 +03:00
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/gen/*.gcda
|
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/src/*.gcda
|
2017-04-01 20:12:33 +03:00
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/src/tracing/*.gcda
|
2018-01-27 09:35:35 +03:00
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node_lib/gen/*.gcda
|
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node_lib/src/*.gcda
|
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node_lib/src/tracing/*.gcda
|
2017-01-10 12:21:30 +03:00
|
|
|
-$(MAKE) $(COVTESTS)
|
|
|
|
mv lib lib__
|
|
|
|
mv lib_ lib
|
|
|
|
mkdir -p coverage .cov_tmp
|
2018-05-16 03:30:05 +03:00
|
|
|
$(NODE) ./node_modules/.bin/nyc merge 'out/Release/.coverage' \
|
|
|
|
.cov_tmp/libcov.json
|
2017-01-10 12:21:30 +03:00
|
|
|
(cd lib && .$(NODE) ../node_modules/.bin/nyc report \
|
2018-10-20 00:26:40 +03:00
|
|
|
--temp-dir "$(CURDIR)/.cov_tmp" \
|
|
|
|
--report-dir "$(CURDIR)/coverage" \
|
|
|
|
--reporter html)
|
2018-03-02 21:39:10 +03:00
|
|
|
-(cd out && "../gcovr/scripts/gcovr" --gcov-exclude='.*deps' \
|
2018-01-27 09:35:35 +03:00
|
|
|
--gcov-exclude='.*usr' -v -r Release/obj.target \
|
2017-10-09 21:30:38 +03:00
|
|
|
--html --html-detail -o ../coverage/cxxcoverage.html \
|
|
|
|
--gcov-executable="$(GCOV)")
|
2017-01-10 12:21:30 +03:00
|
|
|
mv lib lib_
|
|
|
|
mv lib__ lib
|
|
|
|
@echo -n "Javascript coverage %: "
|
|
|
|
@grep -B1 Lines coverage/index.html | head -n1 \
|
|
|
|
| sed 's/<[^>]*>//g'| sed 's/ //g'
|
|
|
|
@echo -n "C++ coverage %: "
|
|
|
|
@grep -A3 Lines coverage/cxxcoverage.html | grep style \
|
|
|
|
| sed 's/<[^>]*>//g'| sed 's/ //g'
|
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: cctest
|
2017-11-12 22:54:28 +03:00
|
|
|
# Runs the C++ tests using the built `cctest` executable.
|
2015-03-19 04:01:45 +03:00
|
|
|
cctest: all
|
2017-02-21 10:43:21 +03:00
|
|
|
@out/$(BUILDTYPE)/$@ --gtest_filter=$(GTEST_FILTER)
|
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: list-gtests
|
2017-02-21 10:43:21 +03:00
|
|
|
list-gtests:
|
|
|
|
ifeq (,$(wildcard out/$(BUILDTYPE)/cctest))
|
|
|
|
$(error Please run 'make cctest' first)
|
|
|
|
endif
|
|
|
|
@out/$(BUILDTYPE)/cctest --gtest_list_tests
|
2015-03-19 04:01:45 +03:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: v8
|
2017-11-12 22:54:28 +03:00
|
|
|
# Related CI job: node-test-commit-v8-linux
|
|
|
|
# Rebuilds deps/v8 as a git tree, pulls its third-party dependencies, and
|
|
|
|
# builds it.
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 07:39:06 +03:00
|
|
|
v8:
|
2018-03-14 15:04:48 +03:00
|
|
|
tools/make-v8.sh $(V8_ARCH).$(BUILDTYPE_LOWER) $(V8_BUILD_OPTIONS)
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 07:39:06 +03:00
|
|
|
|
2018-03-13 18:21:13 +03:00
|
|
|
.PHONY: jstest
|
2018-11-17 23:34:54 +03:00
|
|
|
jstest: build-addons build-js-native-api-tests build-node-api-tests ## Runs addon tests and JS tests
|
2018-04-27 19:21:46 +03:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) \
|
2018-05-17 04:03:53 +03:00
|
|
|
--skip-tests=$(CI_SKIP_TESTS) \
|
2018-03-13 18:21:13 +03:00
|
|
|
$(CI_JS_SUITES) \
|
|
|
|
$(CI_NATIVE_SUITES)
|
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: test
|
2017-11-12 22:54:28 +03:00
|
|
|
# This does not run tests of third-party libraries inside deps.
|
2018-01-23 13:49:25 +03:00
|
|
|
test: all ## Runs default tests, linters, and builds docs.
|
2018-09-27 07:32:37 +03:00
|
|
|
$(MAKE) -s test-doc
|
2018-01-23 13:49:25 +03:00
|
|
|
$(MAKE) -s build-addons
|
2018-11-17 23:34:54 +03:00
|
|
|
$(MAKE) -s build-js-native-api-tests
|
|
|
|
$(MAKE) -s build-node-api-tests
|
2017-11-14 10:41:10 +03:00
|
|
|
$(MAKE) -s cctest
|
2018-03-13 18:21:13 +03:00
|
|
|
$(MAKE) -s jstest
|
2009-10-04 00:42:03 +04:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: test-only
|
2018-01-23 13:49:25 +03:00
|
|
|
test-only: all ## For a quick test, does not run linter or build docs.
|
|
|
|
$(MAKE) build-addons
|
2018-11-17 23:34:54 +03:00
|
|
|
$(MAKE) build-js-native-api-tests
|
|
|
|
$(MAKE) build-node-api-tests
|
2017-10-18 08:58:46 +03:00
|
|
|
$(MAKE) cctest
|
2018-03-13 18:21:13 +03:00
|
|
|
$(MAKE) jstest
|
2017-10-18 08:58:46 +03:00
|
|
|
|
2017-11-12 22:54:28 +03:00
|
|
|
# Used by `make coverage-test`
|
2018-01-23 13:49:25 +03:00
|
|
|
test-cov: all
|
|
|
|
$(MAKE) build-addons
|
2018-11-17 23:34:54 +03:00
|
|
|
$(MAKE) build-js-native-api-tests
|
|
|
|
$(MAKE) build-node-api-tests
|
2017-09-29 04:29:54 +03:00
|
|
|
# $(MAKE) cctest
|
2018-05-17 04:03:53 +03:00
|
|
|
CI_SKIP_TESTS=core_line_numbers.js $(MAKE) jstest
|
2017-09-29 04:29:54 +03:00
|
|
|
|
2014-12-17 16:30:04 +03:00
|
|
|
test-parallel: all
|
2018-04-27 19:21:46 +03:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) parallel
|
2014-12-17 16:30:04 +03:00
|
|
|
|
2010-12-22 21:24:34 +03:00
|
|
|
test-valgrind: all
|
2018-04-27 19:21:46 +03:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) --valgrind sequential parallel message
|
2010-12-22 21:24:34 +03:00
|
|
|
|
2017-04-17 07:01:00 +03:00
|
|
|
test-check-deopts: all
|
2018-04-27 19:21:46 +03:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) --check-deopts parallel sequential
|
2017-04-17 07:01:00 +03:00
|
|
|
|
2018-11-02 09:53:57 +03:00
|
|
|
benchmark/napi/function_call/build/$(BUILDTYPE)/binding.node: \
|
2018-06-15 23:03:12 +03:00
|
|
|
benchmark/napi/function_call/napi_binding.c \
|
|
|
|
benchmark/napi/function_call/binding.cc \
|
2018-10-29 12:27:34 +03:00
|
|
|
benchmark/napi/function_call/binding.gyp | all
|
2018-01-23 13:49:25 +03:00
|
|
|
$(NODE) deps/npm/node_modules/node-gyp/bin/node-gyp rebuild \
|
|
|
|
--python="$(PYTHON)" \
|
2018-06-15 23:03:12 +03:00
|
|
|
--directory="$(shell pwd)/benchmark/napi/function_call" \
|
2018-01-23 13:49:25 +03:00
|
|
|
--nodedir="$(shell pwd)"
|
|
|
|
|
2018-11-02 09:53:57 +03:00
|
|
|
benchmark/napi/function_args/build/$(BUILDTYPE)/binding.node: \
|
2018-06-27 07:42:18 +03:00
|
|
|
benchmark/napi/function_args/napi_binding.c \
|
|
|
|
benchmark/napi/function_args/binding.cc \
|
2018-10-29 12:27:34 +03:00
|
|
|
benchmark/napi/function_args/binding.gyp | all
|
2018-06-27 07:42:18 +03:00
|
|
|
$(NODE) deps/npm/node_modules/node-gyp/bin/node-gyp rebuild \
|
|
|
|
--python="$(PYTHON)" \
|
|
|
|
--directory="$(shell pwd)/benchmark/napi/function_args" \
|
|
|
|
--nodedir="$(shell pwd)"
|
|
|
|
|
2018-01-23 13:49:25 +03:00
|
|
|
DOCBUILDSTAMP_PREREQS = tools/doc/addon-verify.js doc/api/addons.md
|
2016-08-26 17:07:29 +03:00
|
|
|
|
|
|
|
ifeq ($(OSTYPE),aix)
|
2018-01-23 13:49:25 +03:00
|
|
|
DOCBUILDSTAMP_PREREQS := $(DOCBUILDSTAMP_PREREQS) out/$(BUILDTYPE)/node.exp
|
2016-08-26 17:07:29 +03:00
|
|
|
endif
|
|
|
|
|
2018-11-06 05:55:09 +03:00
|
|
|
node_use_openssl = $(call available-node,"-p" \
|
|
|
|
"process.versions.openssl != undefined")
|
2018-07-07 04:46:38 +03:00
|
|
|
test/addons/.docbuildstamp: $(DOCBUILDSTAMP_PREREQS) tools/doc/node_modules
|
2018-11-06 05:55:09 +03:00
|
|
|
@if [ "$(shell $(node_use_openssl))" != "true" ]; then \
|
|
|
|
echo "Skipping .docbuildstamp (no crypto)"; \
|
|
|
|
else \
|
|
|
|
$(RM) -r test/addons/??_*/; \
|
|
|
|
[ -x $(NODE) ] && $(NODE) $< || node $< ; \
|
|
|
|
touch $@; \
|
|
|
|
fi
|
2016-06-10 12:33:14 +03:00
|
|
|
|
2018-01-23 13:49:25 +03:00
|
|
|
ADDONS_BINDING_GYPS := \
|
|
|
|
$(filter-out test/addons/??_*/binding.gyp, \
|
|
|
|
$(wildcard test/addons/*/binding.gyp))
|
2015-08-18 22:29:59 +03:00
|
|
|
|
2018-01-23 13:49:25 +03:00
|
|
|
ADDONS_BINDING_SOURCES := \
|
|
|
|
$(filter-out test/addons/??_*/*.cc, $(wildcard test/addons/*/*.cc)) \
|
|
|
|
$(filter-out test/addons/??_*/*.h, $(wildcard test/addons/*/*.h))
|
2017-03-21 00:55:26 +03:00
|
|
|
|
2018-08-07 14:09:04 +03:00
|
|
|
ADDONS_PREREQS := config.gypi \
|
|
|
|
deps/npm/node_modules/node-gyp/package.json tools/build-addons.js \
|
|
|
|
deps/uv/include/*.h deps/v8/include/*.h \
|
|
|
|
src/node.h src/node_buffer.h src/node_object_wrap.h src/node_version.h
|
|
|
|
|
|
|
|
define run_build_addons
|
|
|
|
env npm_config_loglevel=$(LOGLEVEL) npm_config_nodedir="$$PWD" \
|
|
|
|
npm_config_python="$(PYTHON)" $(NODE) "$$PWD/tools/build-addons" \
|
|
|
|
"$$PWD/deps/npm/node_modules/node-gyp/bin/node-gyp.js" \
|
|
|
|
$1
|
|
|
|
touch $2
|
|
|
|
endef
|
|
|
|
|
2018-01-23 13:49:25 +03:00
|
|
|
# Implicitly depends on $(NODE_EXE), see the build-addons rule for rationale.
|
|
|
|
# Depends on node-gyp package.json so that build-addons is (re)executed when
|
|
|
|
# node-gyp is updated as part of an npm update.
|
2018-08-07 14:09:04 +03:00
|
|
|
test/addons/.buildstamp: $(ADDONS_PREREQS) \
|
2018-01-23 13:49:25 +03:00
|
|
|
$(ADDONS_BINDING_GYPS) $(ADDONS_BINDING_SOURCES) \
|
|
|
|
test/addons/.docbuildstamp
|
2018-08-07 14:09:04 +03:00
|
|
|
@$(call run_build_addons,"$$PWD/test/addons",$@)
|
2018-01-20 03:00:34 +03:00
|
|
|
|
|
|
|
.PHONY: build-addons
|
2018-01-23 13:49:25 +03:00
|
|
|
# .buildstamp needs $(NODE_EXE) but cannot depend on it
|
|
|
|
# directly because it calls make recursively. The parent make cannot know
|
|
|
|
# if the subprocess touched anything so it pessimistically assumes that
|
|
|
|
# .buildstamp is out of date and need a rebuild.
|
|
|
|
# Just goes to show that recursive make really is harmful...
|
|
|
|
# TODO(bnoordhuis) Force rebuild after gyp update.
|
|
|
|
build-addons: | $(NODE_EXE) test/addons/.buildstamp
|
|
|
|
|
2018-11-17 23:34:54 +03:00
|
|
|
JS_NATIVE_API_BINDING_GYPS := \
|
|
|
|
$(filter-out test/js-native-api/??_*/binding.gyp, \
|
|
|
|
$(wildcard test/js-native-api/*/binding.gyp))
|
2018-01-23 13:49:25 +03:00
|
|
|
|
2018-11-17 23:34:54 +03:00
|
|
|
JS_NATIVE_API_BINDING_SOURCES := \
|
|
|
|
$(filter-out test/js-native-api/??_*/*.c, $(wildcard test/js-native-api/*/*.c)) \
|
|
|
|
$(filter-out test/js-native-api/??_*/*.cc, $(wildcard test/js-native-api/*/*.cc)) \
|
|
|
|
$(filter-out test/js-native-api/??_*/*.h, $(wildcard test/js-native-api/*/*.h))
|
2018-01-23 13:49:25 +03:00
|
|
|
|
2018-11-17 23:34:54 +03:00
|
|
|
# Implicitly depends on $(NODE_EXE), see the build-js-native-api-tests rule for rationale.
|
|
|
|
test/js-native-api/.buildstamp: $(ADDONS_PREREQS) \
|
|
|
|
$(JS_NATIVE_API_BINDING_GYPS) $(JS_NATIVE_API_BINDING_SOURCES) \
|
2018-10-19 22:10:59 +03:00
|
|
|
src/node_api.h src/node_api_types.h src/js_native_api.h \
|
|
|
|
src/js_native_api_types.h src/js_native_api_v8.h src/js_native_api_v8_internals.h
|
2018-11-17 23:34:54 +03:00
|
|
|
@$(call run_build_addons,"$$PWD/test/js-native-api",$@)
|
2018-01-23 13:49:25 +03:00
|
|
|
|
2018-11-17 23:34:54 +03:00
|
|
|
.PHONY: build-js-native-api-tests
|
2018-01-23 13:49:25 +03:00
|
|
|
# .buildstamp needs $(NODE_EXE) but cannot depend on it
|
|
|
|
# directly because it calls make recursively. The parent make cannot know
|
|
|
|
# if the subprocess touched anything so it pessimistically assumes that
|
|
|
|
# .buildstamp is out of date and need a rebuild.
|
|
|
|
# Just goes to show that recursive make really is harmful...
|
|
|
|
# TODO(bnoordhuis) Force rebuild after gyp or node-gyp update.
|
2018-11-17 23:34:54 +03:00
|
|
|
build-js-native-api-tests: | $(NODE_EXE) test/js-native-api/.buildstamp
|
|
|
|
|
|
|
|
NODE_API_BINDING_GYPS := \
|
|
|
|
$(filter-out test/node-api/??_*/binding.gyp, \
|
|
|
|
$(wildcard test/node-api/*/binding.gyp))
|
|
|
|
|
|
|
|
NODE_API_BINDING_SOURCES := \
|
|
|
|
$(filter-out test/node-api/??_*/*.c, $(wildcard test/node-api/*/*.c)) \
|
|
|
|
$(filter-out test/node-api/??_*/*.cc, $(wildcard test/node-api/*/*.cc)) \
|
|
|
|
$(filter-out test/node-api/??_*/*.h, $(wildcard test/node-api/*/*.h))
|
|
|
|
|
|
|
|
# Implicitly depends on $(NODE_EXE), see the build-node-api-tests rule for rationale.
|
|
|
|
test/node-api/.buildstamp: $(ADDONS_PREREQS) \
|
|
|
|
$(NODE_API_BINDING_GYPS) $(NODE_API_BINDING_SOURCES) \
|
|
|
|
src/node_api.h src/node_api_types.h src/js_native_api.h \
|
|
|
|
src/js_native_api_types.h src/js_native_api_v8.h src/js_native_api_v8_internals.h
|
|
|
|
@$(call run_build_addons,"$$PWD/test/node-api",$@)
|
|
|
|
|
|
|
|
.PHONY: build-node-api-tests
|
|
|
|
# .buildstamp needs $(NODE_EXE) but cannot depend on it
|
|
|
|
# directly because it calls make recursively. The parent make cannot know
|
|
|
|
# if the subprocess touched anything so it pessimistically assumes that
|
|
|
|
# .buildstamp is out of date and need a rebuild.
|
|
|
|
# Just goes to show that recursive make really is harmful...
|
|
|
|
# TODO(bnoordhuis) Force rebuild after gyp or node-gyp update.
|
|
|
|
build-node-api-tests: | $(NODE_EXE) test/node-api/.buildstamp
|
2017-03-21 00:55:26 +03:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: clear-stalled
|
2017-02-08 22:39:24 +03:00
|
|
|
clear-stalled:
|
2018-08-13 08:24:42 +03:00
|
|
|
@echo "Clean up any leftover processes but don't error if found."
|
2017-02-08 22:39:24 +03:00
|
|
|
ps awwx | grep Release/node | grep -v grep | cat
|
2017-04-01 21:50:46 +03:00
|
|
|
@PS_OUT=`ps awwx | grep Release/node | grep -v grep | awk '{print $$1}'`; \
|
|
|
|
if [ "$${PS_OUT}" ]; then \
|
2018-04-21 08:45:31 +03:00
|
|
|
echo $${PS_OUT} | xargs kill -9; \
|
2017-04-01 21:50:46 +03:00
|
|
|
fi
|
2017-02-08 22:39:24 +03:00
|
|
|
|
2018-11-17 23:34:54 +03:00
|
|
|
test-build: | all build-addons build-js-native-api-tests build-node-api-tests
|
2018-01-23 13:49:25 +03:00
|
|
|
|
2018-11-17 23:34:54 +03:00
|
|
|
test-build-js-native-api: all build-js-native-api-tests
|
|
|
|
|
|
|
|
test-build-node-api: all build-node-api-tests
|
2018-01-23 13:49:25 +03:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: test-all
|
2018-07-27 14:36:35 +03:00
|
|
|
test-all: test-build ## Run everything in test/.
|
2018-04-18 12:18:38 +03:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=debug,release
|
2009-10-03 23:46:59 +04:00
|
|
|
|
2018-01-23 13:49:25 +03:00
|
|
|
test-all-valgrind: test-build
|
2018-04-18 12:18:38 +03:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=debug,release --valgrind
|
2010-12-22 21:24:34 +03:00
|
|
|
|
2018-11-17 23:34:54 +03:00
|
|
|
CI_NATIVE_SUITES ?= addons js-native-api node-api
|
2017-09-29 04:29:54 +03:00
|
|
|
CI_JS_SUITES ?= default
|
2017-10-22 09:05:26 +03:00
|
|
|
CI_DOC := doctool
|
2016-06-15 15:42:21 +03:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: test-ci-native
|
2016-06-15 15:42:21 +03:00
|
|
|
# Build and test addons without building anything else
|
2017-11-12 22:54:28 +03:00
|
|
|
# Related CI job: node-test-commit-arm-fanned
|
2016-10-09 17:24:23 +03:00
|
|
|
test-ci-native: LOGLEVEL := info
|
2018-11-17 23:34:54 +03:00
|
|
|
test-ci-native: | test/addons/.buildstamp test/js-native-api/.buildstamp test/node-api/.buildstamp
|
2016-06-15 15:42:21 +03:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) -p tap --logfile test.tap \
|
2018-04-27 19:21:46 +03:00
|
|
|
--mode=$(BUILDTYPE_LOWER) --flaky-tests=$(FLAKY_TESTS) \
|
2016-06-15 15:42:21 +03:00
|
|
|
$(TEST_CI_ARGS) $(CI_NATIVE_SUITES)
|
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: test-ci-js
|
2016-06-15 15:42:21 +03:00
|
|
|
# This target should not use a native compiler at all
|
2017-11-12 22:54:28 +03:00
|
|
|
# Related CI job: node-test-commit-arm-fanned
|
2017-02-08 22:39:24 +03:00
|
|
|
test-ci-js: | clear-stalled
|
2016-06-15 15:42:21 +03:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) -p tap --logfile test.tap \
|
2018-04-27 19:21:46 +03:00
|
|
|
--mode=$(BUILDTYPE_LOWER) --flaky-tests=$(FLAKY_TESTS) \
|
2018-10-12 21:13:33 +03:00
|
|
|
$(TEST_CI_ARGS) $(CI_JS_SUITES) --skip-tests=sequential/test-benchmark-napi
|
2018-08-13 08:24:42 +03:00
|
|
|
@echo "Clean up any leftover processes, error if found."
|
2017-04-01 21:50:46 +03:00
|
|
|
ps awwx | grep Release/node | grep -v grep | cat
|
|
|
|
@PS_OUT=`ps awwx | grep Release/node | grep -v grep | awk '{print $$1}'`; \
|
2017-02-09 21:42:29 +03:00
|
|
|
if [ "$${PS_OUT}" ]; then \
|
2018-04-21 08:45:31 +03:00
|
|
|
echo $${PS_OUT} | xargs kill -9; exit 1; \
|
2017-02-09 21:42:29 +03:00
|
|
|
fi
|
2016-06-15 15:42:21 +03:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: test-ci
|
2017-11-12 22:54:28 +03:00
|
|
|
# Related CI jobs: most CI tests, excluding node-test-commit-arm-fanned
|
2016-10-09 17:24:23 +03:00
|
|
|
test-ci: LOGLEVEL := info
|
2018-11-17 23:34:54 +03:00
|
|
|
test-ci: | clear-stalled build-addons build-js-native-api-tests build-node-api-tests doc-only
|
2016-08-10 12:47:46 +03:00
|
|
|
out/Release/cctest --gtest_output=tap:cctest.tap
|
2016-04-15 06:15:40 +03:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) -p tap --logfile test.tap \
|
2018-04-27 19:21:46 +03:00
|
|
|
--mode=$(BUILDTYPE_LOWER) --flaky-tests=$(FLAKY_TESTS) \
|
2017-12-29 08:10:46 +03:00
|
|
|
$(TEST_CI_ARGS) $(CI_JS_SUITES) $(CI_NATIVE_SUITES) $(CI_DOC)
|
2018-08-13 08:24:42 +03:00
|
|
|
@echo "Clean up any leftover processes, error if found."
|
2017-04-01 21:50:46 +03:00
|
|
|
ps awwx | grep Release/node | grep -v grep | cat
|
|
|
|
@PS_OUT=`ps awwx | grep Release/node | grep -v grep | awk '{print $$1}'`; \
|
2017-02-09 21:42:29 +03:00
|
|
|
if [ "$${PS_OUT}" ]; then \
|
2018-04-21 08:45:31 +03:00
|
|
|
echo $${PS_OUT} | xargs kill -9; exit 1; \
|
2017-02-09 21:42:29 +03:00
|
|
|
fi
|
2015-01-13 01:40:51 +03:00
|
|
|
|
2017-11-12 22:54:28 +03:00
|
|
|
.PHONY: build-ci
|
|
|
|
# Prepare the build for running the tests.
|
|
|
|
# Related CI jobs: most CI tests, excluding node-test-commit-arm-fanned
|
|
|
|
build-ci:
|
2018-09-18 21:57:05 +03:00
|
|
|
$(PYTHON) ./configure --verbose $(CONFIG_FLAGS)
|
2017-11-12 22:54:28 +03:00
|
|
|
$(MAKE)
|
|
|
|
|
|
|
|
.PHONY: run-ci
|
|
|
|
# Run by CI tests, exceptions:
|
|
|
|
# - node-test-commit-arm-fanned (Raspberry Pis), where the binaries are
|
|
|
|
# cross-compiled, then transferred elsewhere to run different subsets
|
|
|
|
# of tests. See `test-ci-native` and `test-ci-js`.
|
|
|
|
# - node-test-commit-linux-coverage: where the build and the tests need
|
|
|
|
# to be instrumented, see `coverage`.
|
2018-10-18 18:00:11 +03:00
|
|
|
#
|
|
|
|
# Using -j1 as the sub target in `test-ci` already have internal parallelism.
|
|
|
|
# Refs: https://github.com/nodejs/node/pull/23733
|
2017-11-12 22:54:28 +03:00
|
|
|
run-ci: build-ci
|
2018-10-18 18:00:11 +03:00
|
|
|
$(MAKE) test-ci -j1
|
2017-11-12 22:54:28 +03:00
|
|
|
|
2018-01-23 13:49:25 +03:00
|
|
|
test-release: test-build
|
2018-04-27 19:21:46 +03:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER)
|
2010-03-03 00:18:59 +03:00
|
|
|
|
2018-01-23 13:49:25 +03:00
|
|
|
test-debug: test-build
|
2018-04-18 12:18:38 +03:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=debug
|
2009-10-03 23:46:59 +04:00
|
|
|
|
2018-01-23 13:49:25 +03:00
|
|
|
test-message: test-build
|
2018-04-18 12:18:38 +03:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) message
|
2010-06-19 05:14:06 +04:00
|
|
|
|
2018-09-16 10:00:40 +03:00
|
|
|
test-wpt: all
|
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) wpt
|
|
|
|
|
2018-11-09 03:33:42 +03:00
|
|
|
test-simple: | cctest # Depends on 'all'.
|
2018-04-18 12:18:38 +03:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) parallel sequential
|
2010-11-15 02:50:14 +03:00
|
|
|
|
2015-02-27 02:00:07 +03:00
|
|
|
test-pummel: all
|
2018-04-18 12:18:38 +03:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) pummel
|
2010-11-15 02:50:14 +03:00
|
|
|
|
2010-11-02 02:03:32 +03:00
|
|
|
test-internet: all
|
2018-04-18 12:18:38 +03:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) internet
|
2010-02-25 09:36:17 +03:00
|
|
|
|
2016-12-12 01:37:25 +03:00
|
|
|
test-node-inspect: $(NODE_EXE)
|
|
|
|
USE_EMBEDDED_NODE_INSPECT=1 $(NODE) tools/test-npm-package \
|
|
|
|
--install deps/node-inspect test
|
|
|
|
|
2018-11-09 03:33:42 +03:00
|
|
|
test-benchmark: | bench-addons-build
|
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) benchmark
|
|
|
|
|
2016-11-08 00:34:54 +03:00
|
|
|
test-tick-processor: all
|
2018-04-18 12:18:38 +03:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) tick-processor
|
2016-11-08 00:34:54 +03:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: test-hash-seed
|
2017-11-12 22:54:28 +03:00
|
|
|
# Verifies the hash seed used by V8 for hashing is random.
|
2017-06-02 10:09:49 +03:00
|
|
|
test-hash-seed: all
|
|
|
|
$(NODE) test/pummel/test-hash-seed.js
|
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: test-doc
|
2017-11-12 22:54:28 +03:00
|
|
|
test-doc: doc-only ## Builds, lints, and verifies the docs.
|
2017-10-22 09:05:26 +03:00
|
|
|
$(MAKE) lint
|
2018-04-18 12:18:38 +03:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) $(CI_DOC)
|
2017-10-22 09:05:26 +03:00
|
|
|
|
2016-03-02 20:12:47 +03:00
|
|
|
test-known-issues: all
|
2018-04-18 12:18:38 +03:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) known_issues
|
2016-03-02 20:12:47 +03:00
|
|
|
|
2017-11-12 22:54:28 +03:00
|
|
|
# Related CI job: node-test-npm
|
2017-11-26 17:41:56 +03:00
|
|
|
test-npm: $(NODE_EXE) ## Run the npm test suite on deps/npm.
|
2017-02-23 01:05:19 +03:00
|
|
|
$(NODE) tools/test-npm-package --install --logfile=test-npm.tap deps/npm test-node
|
2011-12-17 06:04:39 +04:00
|
|
|
|
2014-08-31 02:59:05 +04:00
|
|
|
test-npm-publish: $(NODE_EXE)
|
2015-06-12 08:12:20 +03:00
|
|
|
npm_package_config_publishtest=true $(NODE) deps/npm/test/run.js
|
2011-07-08 21:40:35 +04:00
|
|
|
|
2018-11-17 23:34:54 +03:00
|
|
|
.PHONY: test-js-native-api
|
|
|
|
test-js-native-api: test-build-js-native-api
|
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) js-native-api
|
|
|
|
|
|
|
|
.PHONY: test-js-native-api-clean
|
|
|
|
test-js-native-api-clean:
|
|
|
|
$(RM) -r test/js-native-api/*/build
|
|
|
|
$(RM) test/js-native-api/.buildstamp
|
|
|
|
|
|
|
|
.PHONY: test-node-api
|
|
|
|
test-node-api: test-build-node-api
|
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) node-api
|
2017-03-21 00:55:26 +03:00
|
|
|
|
2018-11-17 23:34:54 +03:00
|
|
|
.PHONY: test-node-api-clean
|
|
|
|
test-node-api-clean:
|
|
|
|
$(RM) -r test/node-api/*/build
|
|
|
|
$(RM) test/node-api/.buildstamp
|
2017-05-15 07:58:21 +03:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: test-addons
|
2018-11-17 23:34:54 +03:00
|
|
|
test-addons: test-build test-js-native-api test-node-api
|
2018-04-27 19:21:46 +03:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) addons
|
2014-01-19 02:49:18 +04:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: test-addons-clean
|
2017-02-23 19:39:53 +03:00
|
|
|
test-addons-clean:
|
2017-05-15 07:58:21 +03:00
|
|
|
$(RM) -r test/addons/??_*/
|
|
|
|
$(RM) -r test/addons/*/build
|
2018-01-23 13:49:25 +03:00
|
|
|
$(RM) test/addons/.buildstamp test/addons/.docbuildstamp
|
2018-11-17 23:34:54 +03:00
|
|
|
$(MAKE) test-js-native-api-clean
|
|
|
|
$(MAKE) test-node-api-clean
|
2014-07-23 05:03:10 +04:00
|
|
|
|
2017-04-05 13:04:24 +03:00
|
|
|
test-async-hooks:
|
2018-04-27 19:21:46 +03:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) async-hooks
|
2017-04-05 13:04:24 +03:00
|
|
|
|
2018-01-23 13:49:25 +03:00
|
|
|
test-with-async-hooks:
|
|
|
|
$(MAKE) build-addons
|
2018-11-17 23:34:54 +03:00
|
|
|
$(MAKE) build-js-native-api-tests
|
|
|
|
$(MAKE) build-node-api-tests
|
2017-06-20 08:21:33 +03:00
|
|
|
$(MAKE) cctest
|
2018-04-27 19:21:46 +03:00
|
|
|
NODE_TEST_WITH_ASYNC_HOOKS=1 $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) \
|
2017-06-20 08:21:33 +03:00
|
|
|
$(CI_JS_SUITES) \
|
|
|
|
$(CI_NATIVE_SUITES)
|
|
|
|
|
2016-03-14 02:08:11 +03:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: test-v8
|
|
|
|
.PHONY: test-v8-all
|
|
|
|
.PHONY: test-v8-benchmarks
|
|
|
|
.PHONY: test-v8-intl
|
2018-05-28 20:48:47 +03:00
|
|
|
.PHONY: test-v8-updates
|
2016-03-14 02:08:11 +03:00
|
|
|
ifneq ("","$(wildcard deps/v8/tools/run-tests.py)")
|
2017-11-12 22:54:28 +03:00
|
|
|
# Related CI job: node-test-commit-v8-linux
|
2017-11-26 17:41:56 +03:00
|
|
|
test-v8: v8 ## Runs the V8 test suite on deps/v8.
|
2018-03-14 15:04:48 +03:00
|
|
|
deps/v8/tools/run-tests.py --gn --arch=$(V8_ARCH) \
|
|
|
|
--mode=$(BUILDTYPE_LOWER) $(V8_TEST_OPTIONS) \
|
|
|
|
mjsunit cctest debugger inspector message preparser \
|
|
|
|
$(TAP_V8)
|
2017-07-13 17:02:37 +03:00
|
|
|
@echo Testing hash seed
|
|
|
|
$(MAKE) test-hash-seed
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 07:39:06 +03:00
|
|
|
|
2016-06-29 21:05:17 +03:00
|
|
|
test-v8-intl: v8
|
2018-03-14 15:04:48 +03:00
|
|
|
deps/v8/tools/run-tests.py --gn --arch=$(V8_ARCH) \
|
|
|
|
--mode=$(BUILDTYPE_LOWER) intl \
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 07:39:06 +03:00
|
|
|
$(TAP_V8_INTL)
|
|
|
|
|
2016-06-29 21:05:17 +03:00
|
|
|
test-v8-benchmarks: v8
|
2018-03-14 15:04:48 +03:00
|
|
|
deps/v8/tools/run-tests.py --gn --arch=$(V8_ARCH) --mode=$(BUILDTYPE_LOWER) \
|
|
|
|
benchmarks \
|
|
|
|
$(TAP_V8_BENCHMARKS)
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 07:39:06 +03:00
|
|
|
|
2018-05-28 20:48:47 +03:00
|
|
|
test-v8-updates:
|
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) v8-updates
|
|
|
|
|
|
|
|
test-v8-all: test-v8 test-v8-intl test-v8-benchmarks test-v8-updates
|
2016-10-31 15:07:24 +03:00
|
|
|
# runs all v8 tests
|
2016-03-14 02:08:11 +03:00
|
|
|
else
|
|
|
|
test-v8 test-v8-intl test-v8-benchmarks test-v8-all:
|
|
|
|
@echo "Testing v8 is not available through the source tarball."
|
|
|
|
@echo "Use the git repo instead:" \
|
|
|
|
"$ git clone https://github.com/nodejs/node.git"
|
|
|
|
endif
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 07:39:06 +03:00
|
|
|
|
2017-11-17 20:19:22 +03:00
|
|
|
apidoc_dirs = out/doc out/doc/api out/doc/api/assets
|
2016-04-21 01:12:40 +03:00
|
|
|
apidoc_sources = $(wildcard doc/api/*.md)
|
2017-11-17 20:19:22 +03:00
|
|
|
apidocs_html = $(addprefix out/,$(apidoc_sources:.md=.html))
|
|
|
|
apidocs_json = $(addprefix out/,$(apidoc_sources:.md=.json))
|
2010-10-29 02:10:20 +04:00
|
|
|
|
2011-08-24 01:08:53 +04:00
|
|
|
apiassets = $(subst api_assets,api/assets,$(addprefix out/,$(wildcard doc/api_assets/*)))
|
2010-11-14 01:57:35 +03:00
|
|
|
|
2018-09-06 23:17:54 +03:00
|
|
|
tools/doc/node_modules: tools/doc/package.json
|
2018-11-06 05:55:09 +03:00
|
|
|
@if [ "$(shell $(node_use_openssl))" != "true" ]; then \
|
|
|
|
echo "Skipping tools/doc/node_modules (no crypto)"; \
|
|
|
|
else \
|
|
|
|
cd tools/doc && $(call available-node,$(run-npm-ci)) \
|
|
|
|
fi
|
2018-09-06 23:17:54 +03:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: doc-only
|
2018-06-23 22:42:12 +03:00
|
|
|
doc-only: tools/doc/node_modules \
|
|
|
|
$(apidoc_dirs) $(apiassets) ## Builds the docs with the local or the global Node.js binary.
|
2018-07-03 19:46:56 +03:00
|
|
|
@$(MAKE) out/doc/api/all.html out/doc/api/all.json
|
2017-11-17 20:19:22 +03:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: doc
|
2015-11-19 01:40:03 +03:00
|
|
|
doc: $(NODE_EXE) doc-only
|
2010-11-14 01:57:35 +03:00
|
|
|
|
2017-11-17 20:19:22 +03:00
|
|
|
out/doc:
|
|
|
|
mkdir -p $@
|
|
|
|
|
|
|
|
# If it's a source tarball, doc/api already contains the generated docs.
|
|
|
|
# Just copy everything under doc/api over.
|
|
|
|
out/doc/api: doc/api
|
|
|
|
mkdir -p $@
|
|
|
|
cp -r doc/api out/doc
|
2010-10-29 02:10:20 +04:00
|
|
|
|
2017-11-17 20:19:22 +03:00
|
|
|
# If it's a source tarball, assets are already in doc/api/assets
|
|
|
|
out/doc/api/assets:
|
|
|
|
mkdir -p $@
|
|
|
|
if [ -d doc/api/assets ]; then cp -r doc/api/assets out/doc/api; fi;
|
|
|
|
|
|
|
|
# If it's not a source tarball, we need to copy assets from doc/api_assets
|
2017-10-15 03:57:10 +03:00
|
|
|
out/doc/api/assets/%: doc/api_assets/% out/doc/api/assets
|
2017-10-26 15:28:56 +03:00
|
|
|
@cp $< $@
|
2010-11-15 02:50:14 +03:00
|
|
|
|
2017-11-17 20:19:22 +03:00
|
|
|
|
2018-07-14 00:37:56 +03:00
|
|
|
run-npm-ci = $(PWD)/$(NPM) ci
|
2017-11-17 20:19:22 +03:00
|
|
|
|
2018-12-13 19:14:38 +03:00
|
|
|
LINK_DATA = out/doc/apilinks.json
|
2018-07-07 04:46:38 +03:00
|
|
|
gen-api = tools/doc/generate.js --node-version=$(FULLVERSION) \
|
2018-12-13 19:14:38 +03:00
|
|
|
--apilinks=$(LINK_DATA) $< --output-directory=out/doc/api
|
|
|
|
gen-apilink = tools/doc/apilinks.js $(LINK_DATA) $(wildcard lib/*.js)
|
2018-08-19 21:03:21 +03:00
|
|
|
|
2018-12-13 19:14:38 +03:00
|
|
|
$(LINK_DATA): $(wildcard lib/*.js) tools/doc/apilinks.js
|
2018-08-19 21:03:21 +03:00
|
|
|
$(call available-node, $(gen-apilink))
|
2012-02-27 22:59:35 +04:00
|
|
|
|
2018-07-07 04:46:38 +03:00
|
|
|
out/doc/api/%.json out/doc/api/%.html: doc/api/%.md tools/doc/generate.js \
|
2018-12-13 19:14:38 +03:00
|
|
|
tools/doc/html.js tools/doc/json.js tools/doc/apilinks.js | $(LINK_DATA)
|
2018-07-07 04:46:38 +03:00
|
|
|
$(call available-node, $(gen-api))
|
2010-11-15 02:50:14 +03:00
|
|
|
|
2018-09-02 17:23:13 +03:00
|
|
|
out/doc/api/all.html: $(apidocs_html) tools/doc/allhtml.js \
|
|
|
|
tools/doc/apilinks.js
|
2018-06-27 21:14:54 +03:00
|
|
|
$(call available-node, tools/doc/allhtml.js)
|
|
|
|
|
2018-07-03 19:46:56 +03:00
|
|
|
out/doc/api/all.json: $(apidocs_json) tools/doc/alljson.js
|
|
|
|
$(call available-node, tools/doc/alljson.js)
|
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: docopen
|
2016-11-03 12:03:13 +03:00
|
|
|
docopen: $(apidocs_html)
|
|
|
|
@$(PYTHON) -mwebbrowser file://$(PWD)/out/doc/api/all.html
|
2009-10-03 23:46:59 +04:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: docclean
|
2009-12-30 04:45:15 +03:00
|
|
|
docclean:
|
2017-04-01 20:12:33 +03:00
|
|
|
$(RM) -r out/doc
|
2009-12-30 04:45:15 +03:00
|
|
|
|
2013-06-04 04:05:56 +04:00
|
|
|
RAWVER=$(shell $(PYTHON) tools/getnodeversion.py)
|
|
|
|
VERSION=v$(RAWVER)
|
2015-06-10 10:05:26 +03:00
|
|
|
|
|
|
|
# For nightly builds, you must set DISTTYPE to "nightly", "next-nightly" or
|
|
|
|
# "custom". For the nightly and next-nightly case, you need to set DATESTRING
|
|
|
|
# and COMMIT in order to properly name the build.
|
|
|
|
# For the rc case you need to set CUSTOMTAG to an appropriate CUSTOMTAG number
|
|
|
|
|
|
|
|
ifndef DISTTYPE
|
|
|
|
DISTTYPE=release
|
|
|
|
endif
|
|
|
|
ifeq ($(DISTTYPE),release)
|
2015-01-14 02:53:26 +03:00
|
|
|
FULLVERSION=$(VERSION)
|
2015-06-10 10:05:26 +03:00
|
|
|
else # ifeq ($(DISTTYPE),release)
|
|
|
|
ifeq ($(DISTTYPE),custom)
|
|
|
|
ifndef CUSTOMTAG
|
|
|
|
$(error CUSTOMTAG is not set for DISTTYPE=custom)
|
|
|
|
endif # ifndef CUSTOMTAG
|
|
|
|
TAG=$(CUSTOMTAG)
|
|
|
|
else # ifeq ($(DISTTYPE),custom)
|
|
|
|
ifndef DATESTRING
|
|
|
|
$(error DATESTRING is not set for nightly)
|
|
|
|
endif # ifndef DATESTRING
|
|
|
|
ifndef COMMIT
|
|
|
|
$(error COMMIT is not set for nightly)
|
|
|
|
endif # ifndef COMMIT
|
|
|
|
ifneq ($(DISTTYPE),nightly)
|
|
|
|
ifneq ($(DISTTYPE),next-nightly)
|
|
|
|
$(error DISTTYPE is not release, custom, nightly or next-nightly)
|
|
|
|
endif # ifneq ($(DISTTYPE),next-nightly)
|
|
|
|
endif # ifneq ($(DISTTYPE),nightly)
|
|
|
|
TAG=$(DISTTYPE)$(DATESTRING)$(COMMIT)
|
|
|
|
endif # ifeq ($(DISTTYPE),custom)
|
|
|
|
FULLVERSION=$(VERSION)-$(TAG)
|
|
|
|
endif # ifeq ($(DISTTYPE),release)
|
|
|
|
|
|
|
|
DISTTYPEDIR ?= $(DISTTYPE)
|
2015-04-14 15:22:23 +03:00
|
|
|
RELEASE=$(shell sed -ne 's/\#define NODE_VERSION_IS_RELEASE \([01]\)/\1/p' src/node_version.h)
|
2012-08-04 23:07:17 +04:00
|
|
|
PLATFORM=$(shell uname | tr '[:upper:]' '[:lower:]')
|
2015-01-14 02:53:26 +03:00
|
|
|
NPMVERSION=v$(shell cat deps/npm/package.json | grep '"version"' | sed 's/^[^:]*: "\([^"]*\)",.*/\1/')
|
2015-06-10 10:05:26 +03:00
|
|
|
|
2016-04-20 20:12:14 +03:00
|
|
|
UNAME_M=$(shell uname -m)
|
|
|
|
ifeq ($(findstring x86_64,$(UNAME_M)),x86_64)
|
2012-08-10 03:30:41 +04:00
|
|
|
DESTCPU ?= x64
|
2012-08-04 23:39:54 +04:00
|
|
|
else
|
2016-04-20 20:12:14 +03:00
|
|
|
ifeq ($(findstring ppc64,$(UNAME_M)),ppc64)
|
|
|
|
DESTCPU ?= ppc64
|
|
|
|
else
|
|
|
|
ifeq ($(findstring ppc,$(UNAME_M)),ppc)
|
|
|
|
DESTCPU ?= ppc
|
|
|
|
else
|
|
|
|
ifeq ($(findstring s390x,$(UNAME_M)),s390x)
|
|
|
|
DESTCPU ?= s390x
|
|
|
|
else
|
|
|
|
ifeq ($(findstring s390,$(UNAME_M)),s390)
|
|
|
|
DESTCPU ?= s390
|
|
|
|
else
|
|
|
|
ifeq ($(findstring arm,$(UNAME_M)),arm)
|
|
|
|
DESTCPU ?= arm
|
|
|
|
else
|
|
|
|
ifeq ($(findstring aarch64,$(UNAME_M)),aarch64)
|
build: use arm64 as DESTCPU for aarch64
On a aarch64 system I can run the complete build with tests without
specifying the Makefile variable DESTCPU.
But when running the tar-headers target DESTCPU is passed to configure:
$(PYTHON) ./configure \
--prefix=/ \
--dest-cpu=$(DESTCPU) \
...
The value of DESTCPU in this case will be aarch64 which will cause
configure to fail:
configure: error: option --dest-cpu: invalid choice: 'aarch64'
(choose from 'arm', 'arm64', 'ia32', 'mips', 'mipsel', 'mips64el', 'ppc',
'ppc64', 'x32', 'x64', 'x86', 'x86_64', 's390', 's390x')
In the configure script there is a matching of __aarch64__ to arm64:
$ python -c 'from configure import host_arch_cc; print host_arch_cc()'
arm64
In our case it would be nice to have consitent behaviour for both of
these cases on aarch64.
This commit changes DESTCPU to arm64 to be consistent with the
configure script. DESTCPU is used in $(TARBALL)-headers and in
$(BINARYTAR) but I'm not sure about the implications of making the
change purposed and hope others might chime in and provide some
guidance.
PR-URL: https://github.com/nodejs/node/pull/22548
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
2018-08-27 09:14:02 +03:00
|
|
|
DESTCPU ?= arm64
|
2016-04-20 20:12:14 +03:00
|
|
|
else
|
|
|
|
ifeq ($(findstring powerpc,$(shell uname -p)),powerpc)
|
|
|
|
DESTCPU ?= ppc64
|
|
|
|
else
|
2015-06-10 10:05:26 +03:00
|
|
|
DESTCPU ?= x86
|
2012-08-04 23:39:54 +04:00
|
|
|
endif
|
2016-04-20 20:12:14 +03:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
2012-08-10 03:30:41 +04:00
|
|
|
ifeq ($(DESTCPU),x64)
|
|
|
|
ARCH=x64
|
|
|
|
else
|
2012-11-27 09:03:36 +04:00
|
|
|
ifeq ($(DESTCPU),arm)
|
|
|
|
ARCH=arm
|
|
|
|
else
|
build: use arm64 as DESTCPU for aarch64
On a aarch64 system I can run the complete build with tests without
specifying the Makefile variable DESTCPU.
But when running the tar-headers target DESTCPU is passed to configure:
$(PYTHON) ./configure \
--prefix=/ \
--dest-cpu=$(DESTCPU) \
...
The value of DESTCPU in this case will be aarch64 which will cause
configure to fail:
configure: error: option --dest-cpu: invalid choice: 'aarch64'
(choose from 'arm', 'arm64', 'ia32', 'mips', 'mipsel', 'mips64el', 'ppc',
'ppc64', 'x32', 'x64', 'x86', 'x86_64', 's390', 's390x')
In the configure script there is a matching of __aarch64__ to arm64:
$ python -c 'from configure import host_arch_cc; print host_arch_cc()'
arm64
In our case it would be nice to have consitent behaviour for both of
these cases on aarch64.
This commit changes DESTCPU to arm64 to be consistent with the
configure script. DESTCPU is used in $(TARBALL)-headers and in
$(BINARYTAR) but I'm not sure about the implications of making the
change purposed and hope others might chime in and provide some
guidance.
PR-URL: https://github.com/nodejs/node/pull/22548
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
2018-08-27 09:14:02 +03:00
|
|
|
ifeq ($(DESTCPU),arm64)
|
2016-02-11 05:57:20 +03:00
|
|
|
ARCH=arm64
|
|
|
|
else
|
2015-07-07 21:15:03 +03:00
|
|
|
ifeq ($(DESTCPU),ppc64)
|
|
|
|
ARCH=ppc64
|
|
|
|
else
|
|
|
|
ifeq ($(DESTCPU),ppc)
|
|
|
|
ARCH=ppc
|
|
|
|
else
|
2016-03-29 00:03:06 +03:00
|
|
|
ifeq ($(DESTCPU),s390)
|
|
|
|
ARCH=s390
|
|
|
|
else
|
|
|
|
ifeq ($(DESTCPU),s390x)
|
|
|
|
ARCH=s390x
|
|
|
|
else
|
2012-08-10 03:30:41 +04:00
|
|
|
ARCH=x86
|
2012-08-04 23:39:54 +04:00
|
|
|
endif
|
2012-11-27 09:03:36 +04:00
|
|
|
endif
|
2015-07-07 21:15:03 +03:00
|
|
|
endif
|
|
|
|
endif
|
2016-02-11 05:57:20 +03:00
|
|
|
endif
|
2016-03-29 00:03:06 +03:00
|
|
|
endif
|
|
|
|
endif
|
2015-06-10 10:05:26 +03:00
|
|
|
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 07:39:06 +03:00
|
|
|
# node and v8 use different arch names (e.g. node 'x86' vs v8 'ia32').
|
|
|
|
# pass the proper v8 arch name to $V8_ARCH based on user-specified $DESTCPU.
|
|
|
|
ifeq ($(DESTCPU),x86)
|
|
|
|
V8_ARCH=ia32
|
|
|
|
else
|
|
|
|
V8_ARCH ?= $(DESTCPU)
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2015-06-10 10:05:26 +03:00
|
|
|
# enforce "x86" over "ia32" as the generally accepted way of referring to 32-bit intel
|
|
|
|
ifeq ($(ARCH),ia32)
|
|
|
|
override ARCH=x86
|
2013-02-26 10:51:00 +04:00
|
|
|
endif
|
2015-06-10 10:05:26 +03:00
|
|
|
ifeq ($(DESTCPU),ia32)
|
|
|
|
override DESTCPU=x86
|
|
|
|
endif
|
|
|
|
|
2015-08-13 19:14:34 +03:00
|
|
|
TARNAME=node-$(FULLVERSION)
|
2015-01-13 04:51:34 +03:00
|
|
|
TARBALL=$(TARNAME).tar
|
2016-01-11 22:54:33 +03:00
|
|
|
# Custom user-specified variation, use it directly
|
|
|
|
ifdef VARIATION
|
|
|
|
BINARYNAME=$(TARNAME)-$(PLATFORM)-$(ARCH)-$(VARIATION)
|
|
|
|
else
|
2012-08-04 23:07:17 +04:00
|
|
|
BINARYNAME=$(TARNAME)-$(PLATFORM)-$(ARCH)
|
2016-01-11 22:54:33 +03:00
|
|
|
endif
|
2015-01-13 04:51:34 +03:00
|
|
|
BINARYTAR=$(BINARYNAME).tar
|
2015-06-10 10:05:26 +03:00
|
|
|
# OSX doesn't have xz installed by default, http://macpkg.sourceforge.net/
|
2018-12-05 02:56:02 +03:00
|
|
|
HAS_XZ ?= $(shell which xz > /dev/null 2>&1; [ $$? -eq 0 ] && echo 1 || echo 0)
|
2018-11-21 14:02:54 +03:00
|
|
|
# Supply SKIP_XZ=1 to explicitly skip .tar.xz creation
|
|
|
|
SKIP_XZ ?= 0
|
2018-12-05 02:56:02 +03:00
|
|
|
XZ = $(shell [ $(HAS_XZ) -eq 1 -a $(SKIP_XZ) -eq 0 ] && echo 1 || echo 0)
|
2017-01-05 08:09:32 +03:00
|
|
|
XZ_COMPRESSION ?= 9e
|
2015-06-10 10:05:26 +03:00
|
|
|
PKG=$(TARNAME).pkg
|
2017-09-04 13:07:56 +03:00
|
|
|
MACOSOUTDIR=out/macos
|
2011-11-21 07:22:30 +04:00
|
|
|
|
2018-11-21 14:02:54 +03:00
|
|
|
ifeq ($(SKIP_XZ), 1)
|
|
|
|
check-xz:
|
|
|
|
@echo "SKIP_XZ=1 supplied, skipping .tar.xz creation"
|
|
|
|
else
|
|
|
|
ifeq ($(HAS_XZ), 1)
|
|
|
|
check-xz:
|
|
|
|
else
|
|
|
|
check-xz:
|
|
|
|
@echo "No xz command, cannot continue"
|
|
|
|
@exit 1
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: release-only
|
2018-11-21 14:02:54 +03:00
|
|
|
release-only: check-xz
|
2017-05-11 05:33:29 +03:00
|
|
|
@if [ "$(DISTTYPE)" = "release" ] && `grep -q REPLACEME doc/api/*.md`; then \
|
2017-01-18 15:53:04 +03:00
|
|
|
echo 'Please update REPLACEME in Added: tags in doc/api/*.md (See doc/releases.md)' ; \
|
2016-05-14 00:24:33 +03:00
|
|
|
exit 1 ; \
|
|
|
|
fi
|
2017-05-11 05:33:29 +03:00
|
|
|
@if [ "$(DISTTYPE)" = "release" ] && \
|
2018-04-28 20:24:40 +03:00
|
|
|
`grep -q DEP...X doc/api/deprecations.md`; then \
|
|
|
|
echo 'Please update DEP...X in doc/api/deprecations.md (See doc/releases.md)' ; \
|
2017-08-09 01:00:17 +03:00
|
|
|
exit 1 ; \
|
|
|
|
fi
|
2012-08-05 02:34:04 +04:00
|
|
|
@if [ "$(shell git status --porcelain | egrep -v '^\?\? ')" = "" ]; then \
|
|
|
|
exit 0 ; \
|
|
|
|
else \
|
2015-01-18 09:41:37 +03:00
|
|
|
echo "" >&2 ; \
|
2012-08-05 02:34:04 +04:00
|
|
|
echo "The git repository is not clean." >&2 ; \
|
|
|
|
echo "Please commit changes before building release tarball." >&2 ; \
|
|
|
|
echo "" >&2 ; \
|
|
|
|
git status --porcelain | egrep -v '^\?\?' >&2 ; \
|
|
|
|
echo "" >&2 ; \
|
|
|
|
exit 1 ; \
|
|
|
|
fi
|
2015-06-10 10:05:26 +03:00
|
|
|
@if [ "$(DISTTYPE)" != "release" -o "$(RELEASE)" = "1" ]; then \
|
2012-08-05 02:34:04 +04:00
|
|
|
exit 0; \
|
|
|
|
else \
|
2015-01-18 09:41:37 +03:00
|
|
|
echo "" >&2 ; \
|
2012-08-10 03:30:41 +04:00
|
|
|
echo "#NODE_VERSION_IS_RELEASE is set to $(RELEASE)." >&2 ; \
|
2015-01-18 09:41:37 +03:00
|
|
|
echo "Did you remember to update src/node_version.h?" >&2 ; \
|
|
|
|
echo "" >&2 ; \
|
2012-08-05 02:34:04 +04:00
|
|
|
exit 1 ; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
$(PKG): release-only
|
2017-09-04 13:07:56 +03:00
|
|
|
$(RM) -r $(MACOSOUTDIR)
|
|
|
|
mkdir -p $(MACOSOUTDIR)/installer/productbuild
|
|
|
|
cat tools/macos-installer/productbuild/distribution.xml.tmpl \
|
|
|
|
| sed -E "s/\\{nodeversion\\}/$(FULLVERSION)/g" \
|
|
|
|
| sed -E "s/\\{npmversion\\}/$(NPMVERSION)/g" \
|
|
|
|
>$(MACOSOUTDIR)/installer/productbuild/distribution.xml ; \
|
|
|
|
|
|
|
|
@for dirname in tools/macos-installer/productbuild/Resources/*/; do \
|
|
|
|
lang=$$(basename $$dirname) ; \
|
|
|
|
mkdir -p $(MACOSOUTDIR)/installer/productbuild/Resources/$$lang ; \
|
|
|
|
printf "Found localization directory $$dirname\n" ; \
|
|
|
|
cat $$dirname/welcome.html.tmpl \
|
|
|
|
| sed -E "s/\\{nodeversion\\}/$(FULLVERSION)/g" \
|
|
|
|
| sed -E "s/\\{npmversion\\}/$(NPMVERSION)/g" \
|
|
|
|
>$(MACOSOUTDIR)/installer/productbuild/Resources/$$lang/welcome.html ; \
|
|
|
|
cat $$dirname/conclusion.html.tmpl \
|
|
|
|
| sed -E "s/\\{nodeversion\\}/$(FULLVERSION)/g" \
|
|
|
|
| sed -E "s/\\{npmversion\\}/$(NPMVERSION)/g" \
|
|
|
|
>$(MACOSOUTDIR)/installer/productbuild/Resources/$$lang/conclusion.html ; \
|
|
|
|
done
|
2015-01-18 09:41:37 +03:00
|
|
|
$(PYTHON) ./configure \
|
|
|
|
--dest-cpu=x64 \
|
|
|
|
--tag=$(TAG) \
|
|
|
|
--release-urlbase=$(RELEASE_URLBASE) \
|
2015-08-13 18:30:01 +03:00
|
|
|
$(CONFIG_FLAGS) $(BUILD_RELEASE_FLAGS)
|
2017-09-04 13:07:56 +03:00
|
|
|
$(MAKE) install V=$(V) DESTDIR=$(MACOSOUTDIR)/dist/node
|
|
|
|
SIGN="$(CODESIGN_CERT)" PKGDIR="$(MACOSOUTDIR)/dist/node/usr/local" bash \
|
2017-07-12 03:04:53 +03:00
|
|
|
tools/osx-codesign.sh
|
2017-09-04 13:07:56 +03:00
|
|
|
mkdir -p $(MACOSOUTDIR)/dist/npm/usr/local/lib/node_modules
|
|
|
|
mkdir -p $(MACOSOUTDIR)/pkgs
|
|
|
|
mv $(MACOSOUTDIR)/dist/node/usr/local/lib/node_modules/npm \
|
|
|
|
$(MACOSOUTDIR)/dist/npm/usr/local/lib/node_modules
|
|
|
|
unlink $(MACOSOUTDIR)/dist/node/usr/local/bin/npm
|
|
|
|
unlink $(MACOSOUTDIR)/dist/node/usr/local/bin/npx
|
|
|
|
$(NODE) tools/license2rtf.js < LICENSE > \
|
|
|
|
$(MACOSOUTDIR)/installer/productbuild/Resources/license.rtf
|
|
|
|
cp doc/osx_installer_logo.png $(MACOSOUTDIR)/installer/productbuild/Resources
|
|
|
|
pkgbuild --version $(FULLVERSION) \
|
|
|
|
--identifier org.nodejs.node.pkg \
|
|
|
|
--root $(MACOSOUTDIR)/dist/node $(MACOSOUTDIR)/pkgs/node-$(FULLVERSION).pkg
|
|
|
|
pkgbuild --version $(NPMVERSION) \
|
|
|
|
--identifier org.nodejs.npm.pkg \
|
|
|
|
--root $(MACOSOUTDIR)/dist/npm \
|
|
|
|
--scripts ./tools/macos-installer/pkgbuild/npm/scripts \
|
|
|
|
$(MACOSOUTDIR)/pkgs/npm-$(NPMVERSION).pkg
|
|
|
|
productbuild --distribution $(MACOSOUTDIR)/installer/productbuild/distribution.xml \
|
|
|
|
--resources $(MACOSOUTDIR)/installer/productbuild/Resources \
|
|
|
|
--package-path $(MACOSOUTDIR)/pkgs ./$(PKG)
|
2015-06-10 10:05:26 +03:00
|
|
|
SIGN="$(PRODUCTSIGN_CERT)" PKG="$(PKG)" bash tools/osx-productsign.sh
|
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: pkg
|
2017-11-12 22:54:28 +03:00
|
|
|
# Builds the macOS installer for releases.
|
2015-06-10 10:05:26 +03:00
|
|
|
pkg: $(PKG)
|
|
|
|
|
2017-11-12 22:54:28 +03:00
|
|
|
# Note: this is strictly for release builds on release machines only.
|
2015-06-10 10:05:26 +03:00
|
|
|
pkg-upload: pkg
|
2015-08-31 10:03:26 +03:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-09-15 20:32:37 +03:00
|
|
|
chmod 664 $(TARNAME).pkg
|
|
|
|
scp -p $(TARNAME).pkg $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME).pkg
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME).pkg.done"
|
2011-11-12 02:31:15 +04:00
|
|
|
|
2014-08-31 02:59:05 +04:00
|
|
|
$(TARBALL): release-only $(NODE_EXE) doc
|
2015-02-26 03:08:16 +03:00
|
|
|
git checkout-index -a -f --prefix=$(TARNAME)/
|
2012-06-07 02:01:31 +04:00
|
|
|
mkdir -p $(TARNAME)/doc/api
|
2015-08-13 19:14:34 +03:00
|
|
|
cp doc/node.1 $(TARNAME)/doc/node.1
|
2012-06-07 02:01:31 +04:00
|
|
|
cp -r out/doc/api/* $(TARNAME)/doc/api/
|
2018-01-24 02:37:59 +03:00
|
|
|
$(RM) -r $(TARNAME)/.editorconfig
|
|
|
|
$(RM) -r $(TARNAME)/.git*
|
|
|
|
$(RM) -r $(TARNAME)/.mailmap
|
|
|
|
$(RM) -r $(TARNAME)/deps/openssl/openssl/demos
|
|
|
|
$(RM) -r $(TARNAME)/deps/openssl/openssl/doc
|
|
|
|
$(RM) -r $(TARNAME)/deps/openssl/openssl/test
|
|
|
|
$(RM) -r $(TARNAME)/deps/uv/docs
|
|
|
|
$(RM) -r $(TARNAME)/deps/uv/samples
|
|
|
|
$(RM) -r $(TARNAME)/deps/uv/test
|
|
|
|
$(RM) -r $(TARNAME)/deps/v8/samples
|
|
|
|
$(RM) -r $(TARNAME)/deps/v8/test
|
|
|
|
$(RM) -r $(TARNAME)/deps/v8/tools/profviz
|
|
|
|
$(RM) -r $(TARNAME)/deps/v8/tools/run-tests.py
|
2017-04-01 20:12:33 +03:00
|
|
|
$(RM) -r $(TARNAME)/deps/zlib/contrib # too big, unused
|
2018-01-24 02:37:59 +03:00
|
|
|
$(RM) -r $(TARNAME)/doc/images # too big
|
2017-04-01 20:12:33 +03:00
|
|
|
$(RM) -r $(TARNAME)/test*.tap
|
2018-01-24 02:37:59 +03:00
|
|
|
$(RM) -r $(TARNAME)/tools/cpplint.py
|
|
|
|
$(RM) -r $(TARNAME)/tools/eslint-rules
|
|
|
|
$(RM) -r $(TARNAME)/tools/license-builder.sh
|
|
|
|
$(RM) -r $(TARNAME)/tools/node_modules
|
|
|
|
$(RM) -r $(TARNAME)/tools/osx-*
|
|
|
|
$(RM) -r $(TARNAME)/tools/osx-pkg.pmdoc
|
|
|
|
$(RM) -r $(TARNAME)/tools/pkgsrc
|
2017-04-01 20:12:33 +03:00
|
|
|
find $(TARNAME)/ -name ".eslint*" -maxdepth 2 | xargs $(RM)
|
|
|
|
find $(TARNAME)/ -type l | xargs $(RM) # annoying on windows
|
2010-05-14 02:54:50 +04:00
|
|
|
tar -cf $(TARNAME).tar $(TARNAME)
|
2017-04-01 20:12:33 +03:00
|
|
|
$(RM) -r $(TARNAME)
|
2015-01-13 04:51:34 +03:00
|
|
|
gzip -c -f -9 $(TARNAME).tar > $(TARNAME).tar.gz
|
2018-11-21 14:02:54 +03:00
|
|
|
ifeq ($(XZ), 1)
|
2015-04-15 03:49:29 +03:00
|
|
|
xz -c -f -$(XZ_COMPRESSION) $(TARNAME).tar > $(TARNAME).tar.xz
|
2015-01-13 04:51:34 +03:00
|
|
|
endif
|
2017-04-01 20:12:33 +03:00
|
|
|
$(RM) $(TARNAME).tar
|
2009-10-03 23:46:59 +04:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: tar
|
2017-11-26 17:41:56 +03:00
|
|
|
tar: $(TARBALL) ## Create a source tarball.
|
2012-08-04 23:12:22 +04:00
|
|
|
|
2017-11-12 22:54:28 +03:00
|
|
|
# Note: this is strictly for release builds on release machines only.
|
2015-06-10 10:05:26 +03:00
|
|
|
tar-upload: tar
|
2015-08-31 10:03:26 +03:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-09-15 20:32:37 +03:00
|
|
|
chmod 664 $(TARNAME).tar.gz
|
|
|
|
scp -p $(TARNAME).tar.gz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME).tar.gz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME).tar.gz.done"
|
2018-11-21 14:02:54 +03:00
|
|
|
ifeq ($(XZ), 1)
|
2015-09-15 20:32:37 +03:00
|
|
|
chmod 664 $(TARNAME).tar.xz
|
|
|
|
scp -p $(TARNAME).tar.xz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME).tar.xz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME).tar.xz.done"
|
2015-06-10 10:05:26 +03:00
|
|
|
endif
|
|
|
|
|
2017-11-12 22:54:28 +03:00
|
|
|
# Note: this is strictly for release builds on release machines only.
|
2017-01-25 23:54:34 +03:00
|
|
|
doc-upload: doc
|
2017-05-11 05:09:50 +03:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/docs/"
|
2015-08-31 10:33:22 +03:00
|
|
|
chmod -R ug=rw-x+X,o=r+X out/doc/
|
2017-05-11 05:09:50 +03:00
|
|
|
scp -pr out/doc/* $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/docs/
|
2015-08-31 10:03:26 +03:00
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/docs.done"
|
2015-06-10 10:05:26 +03:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: $(TARBALL)-headers
|
2016-03-31 20:23:42 +03:00
|
|
|
$(TARBALL)-headers: release-only
|
2015-01-18 09:41:37 +03:00
|
|
|
$(PYTHON) ./configure \
|
|
|
|
--prefix=/ \
|
|
|
|
--dest-cpu=$(DESTCPU) \
|
|
|
|
--tag=$(TAG) \
|
|
|
|
--release-urlbase=$(RELEASE_URLBASE) \
|
2015-08-13 18:30:01 +03:00
|
|
|
$(CONFIG_FLAGS) $(BUILD_RELEASE_FLAGS)
|
2015-06-30 09:57:47 +03:00
|
|
|
HEADERS_ONLY=1 $(PYTHON) tools/install.py install '$(TARNAME)' '/'
|
2017-04-01 20:12:33 +03:00
|
|
|
find $(TARNAME)/ -type l | xargs $(RM)
|
2015-06-14 13:23:43 +03:00
|
|
|
tar -cf $(TARNAME)-headers.tar $(TARNAME)
|
2017-04-01 20:12:33 +03:00
|
|
|
$(RM) -r $(TARNAME)
|
2015-06-14 13:23:43 +03:00
|
|
|
gzip -c -f -9 $(TARNAME)-headers.tar > $(TARNAME)-headers.tar.gz
|
2018-11-21 14:02:54 +03:00
|
|
|
ifeq ($(XZ), 1)
|
2015-06-14 13:23:43 +03:00
|
|
|
xz -c -f -$(XZ_COMPRESSION) $(TARNAME)-headers.tar > $(TARNAME)-headers.tar.xz
|
|
|
|
endif
|
2017-04-01 20:12:33 +03:00
|
|
|
$(RM) $(TARNAME)-headers.tar
|
2015-06-14 13:23:43 +03:00
|
|
|
|
2017-11-26 17:41:56 +03:00
|
|
|
tar-headers: $(TARBALL)-headers ## Build the node header tarball.
|
2015-06-14 13:23:43 +03:00
|
|
|
|
|
|
|
tar-headers-upload: tar-headers
|
2015-08-31 10:03:26 +03:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-08-31 10:33:22 +03:00
|
|
|
chmod 664 $(TARNAME)-headers.tar.gz
|
2015-08-31 10:03:26 +03:00
|
|
|
scp -p $(TARNAME)-headers.tar.gz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME)-headers.tar.gz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME)-headers.tar.gz.done"
|
2018-11-21 14:02:54 +03:00
|
|
|
ifeq ($(XZ), 1)
|
2015-08-31 10:33:22 +03:00
|
|
|
chmod 664 $(TARNAME)-headers.tar.xz
|
2015-08-31 10:03:26 +03:00
|
|
|
scp -p $(TARNAME)-headers.tar.xz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME)-headers.tar.xz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME)-headers.tar.xz.done"
|
2015-06-14 13:23:43 +03:00
|
|
|
endif
|
|
|
|
|
2012-08-05 02:34:04 +04:00
|
|
|
$(BINARYTAR): release-only
|
2017-04-01 20:12:33 +03:00
|
|
|
$(RM) -r $(BINARYNAME)
|
|
|
|
$(RM) -r out/deps out/Release
|
2015-01-18 09:41:37 +03:00
|
|
|
$(PYTHON) ./configure \
|
|
|
|
--prefix=/ \
|
|
|
|
--dest-cpu=$(DESTCPU) \
|
|
|
|
--tag=$(TAG) \
|
|
|
|
--release-urlbase=$(RELEASE_URLBASE) \
|
2015-08-13 18:30:01 +03:00
|
|
|
$(CONFIG_FLAGS) $(BUILD_RELEASE_FLAGS)
|
2012-08-04 23:07:17 +04:00
|
|
|
$(MAKE) install DESTDIR=$(BINARYNAME) V=$(V) PORTABLE=1
|
|
|
|
cp README.md $(BINARYNAME)
|
|
|
|
cp LICENSE $(BINARYNAME)
|
2015-01-14 05:16:16 +03:00
|
|
|
cp CHANGELOG.md $(BINARYNAME)
|
2017-07-12 03:05:39 +03:00
|
|
|
ifeq ($(OSTYPE),darwin)
|
|
|
|
SIGN="$(CODESIGN_CERT)" PKGDIR="$(BINARYNAME)" bash tools/osx-codesign.sh
|
|
|
|
endif
|
2012-08-04 23:07:17 +04:00
|
|
|
tar -cf $(BINARYNAME).tar $(BINARYNAME)
|
2017-04-01 20:12:33 +03:00
|
|
|
$(RM) -r $(BINARYNAME)
|
2015-01-13 04:51:34 +03:00
|
|
|
gzip -c -f -9 $(BINARYNAME).tar > $(BINARYNAME).tar.gz
|
2018-11-21 14:02:54 +03:00
|
|
|
ifeq ($(XZ), 1)
|
2015-04-15 03:49:29 +03:00
|
|
|
xz -c -f -$(XZ_COMPRESSION) $(BINARYNAME).tar > $(BINARYNAME).tar.xz
|
2015-01-13 04:51:34 +03:00
|
|
|
endif
|
2017-04-01 20:12:33 +03:00
|
|
|
$(RM) $(BINARYNAME).tar
|
2012-08-04 23:07:17 +04:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: binary
|
2017-11-12 22:54:28 +03:00
|
|
|
# This requires NODE_VERSION_IS_RELEASE defined as 1 in src/node_version.h.
|
2017-11-26 17:41:56 +03:00
|
|
|
binary: $(BINARYTAR) ## Build release binary tarballs.
|
2012-08-04 23:12:37 +04:00
|
|
|
|
2017-11-12 22:54:28 +03:00
|
|
|
# Note: this is strictly for release builds on release machines only.
|
2015-06-10 10:05:26 +03:00
|
|
|
binary-upload: binary
|
2015-08-31 10:03:26 +03:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-09-15 20:32:37 +03:00
|
|
|
chmod 664 $(TARNAME)-$(OSTYPE)-$(ARCH).tar.gz
|
|
|
|
scp -p $(TARNAME)-$(OSTYPE)-$(ARCH).tar.gz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME)-$(OSTYPE)-$(ARCH).tar.gz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME)-$(OSTYPE)-$(ARCH).tar.gz.done"
|
2018-11-21 14:02:54 +03:00
|
|
|
ifeq ($(XZ), 1)
|
2015-09-15 20:32:37 +03:00
|
|
|
chmod 664 $(TARNAME)-$(OSTYPE)-$(ARCH).tar.xz
|
|
|
|
scp -p $(TARNAME)-$(OSTYPE)-$(ARCH).tar.xz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME)-$(OSTYPE)-$(ARCH).tar.xz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME)-$(OSTYPE)-$(ARCH).tar.xz.done"
|
2015-06-10 10:05:26 +03:00
|
|
|
endif
|
2013-06-04 04:05:56 +04:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: bench-all
|
2018-07-13 10:00:19 +03:00
|
|
|
bench-all: bench-addons-build
|
2018-01-14 22:19:51 +03:00
|
|
|
@echo "Please use benchmark/run.js or benchmark/compare.js to run the benchmarks."
|
2013-02-14 02:18:27 +04:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: bench
|
2018-07-13 10:00:19 +03:00
|
|
|
bench: bench-addons-build
|
2018-01-14 22:19:51 +03:00
|
|
|
@echo "Please use benchmark/run.js or benchmark/compare.js to run the benchmarks."
|
2016-03-27 09:12:47 +03:00
|
|
|
|
2018-07-13 10:00:19 +03:00
|
|
|
# Build required addons for benchmark before running it.
|
|
|
|
.PHONY: bench-addons-build
|
2018-11-02 09:53:57 +03:00
|
|
|
bench-addons-build: benchmark/napi/function_call/build/$(BUILDTYPE)/binding.node \
|
|
|
|
benchmark/napi/function_args/build/$(BUILDTYPE)/binding.node
|
2018-07-13 10:00:19 +03:00
|
|
|
|
|
|
|
.PHONY: bench-addons-clean
|
|
|
|
bench-addons-clean:
|
|
|
|
$(RM) -r benchmark/napi/function_call/build
|
|
|
|
$(RM) -r benchmark/napi/function_args/build
|
|
|
|
|
2018-09-06 23:02:30 +03:00
|
|
|
.PHONY: lint-md-rollup
|
|
|
|
lint-md-rollup:
|
2018-11-13 12:23:17 +03:00
|
|
|
cd tools/node-lint-md-cli-rollup && npm install
|
2018-09-06 23:02:30 +03:00
|
|
|
cd tools/node-lint-md-cli-rollup && npm run build-node
|
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: lint-md-clean
|
2017-05-26 11:01:27 +03:00
|
|
|
lint-md-clean:
|
2018-09-06 23:17:54 +03:00
|
|
|
$(RM) -r tools/node-lint-md-cli-rollup/node_modules
|
2017-10-29 09:50:29 +03:00
|
|
|
$(RM) tools/.*mdlintstamp
|
2017-05-26 11:01:27 +03:00
|
|
|
|
2018-02-24 22:07:56 +03:00
|
|
|
.PHONY: lint-md-build
|
2018-09-06 23:17:54 +03:00
|
|
|
lint-md-build:
|
|
|
|
$(warning "Deprecated no-op target 'lint-md-build'")
|
2017-10-29 09:50:29 +03:00
|
|
|
|
2018-06-16 01:56:53 +03:00
|
|
|
LINT_MD_DOC_FILES = $(shell ls doc/*.md doc/**/*.md)
|
2018-09-06 23:17:54 +03:00
|
|
|
run-lint-doc-md = tools/lint-md.js -q -f $(LINT_MD_DOC_FILES)
|
2018-01-20 20:14:03 +03:00
|
|
|
# Lint all changed markdown files under doc/
|
|
|
|
tools/.docmdlintstamp: $(LINT_MD_DOC_FILES)
|
2017-10-29 09:50:29 +03:00
|
|
|
@echo "Running Markdown linter on docs..."
|
2018-09-17 17:33:49 +03:00
|
|
|
@$(call available-node,$(run-lint-doc-md))
|
|
|
|
@touch $@
|
2017-10-29 09:50:29 +03:00
|
|
|
|
2018-08-10 01:19:40 +03:00
|
|
|
LINT_MD_TARGETS = src lib benchmark test tools/doc tools/icu
|
2018-01-20 20:14:03 +03:00
|
|
|
LINT_MD_ROOT_DOCS := $(wildcard *.md)
|
|
|
|
LINT_MD_MISC_FILES := $(shell find $(LINT_MD_TARGETS) -type f \
|
2018-11-25 08:11:22 +03:00
|
|
|
! -path '*node_modules*' ! -path 'test/fixtures/*' -name '*.md') \
|
2018-08-27 09:02:18 +03:00
|
|
|
$(LINT_MD_ROOT_DOCS)
|
2018-09-06 23:17:54 +03:00
|
|
|
run-lint-misc-md = tools/lint-md.js -q -f $(LINT_MD_MISC_FILES)
|
2018-01-20 20:14:03 +03:00
|
|
|
# Lint other changed markdown files maintained by us
|
|
|
|
tools/.miscmdlintstamp: $(LINT_MD_MISC_FILES)
|
2017-10-29 09:50:29 +03:00
|
|
|
@echo "Running Markdown linter on misc docs..."
|
2018-09-17 17:33:49 +03:00
|
|
|
@$(call available-node,$(run-lint-misc-md))
|
|
|
|
@touch $@
|
2017-10-29 09:50:29 +03:00
|
|
|
|
|
|
|
tools/.mdlintstamp: tools/.miscmdlintstamp tools/.docmdlintstamp
|
|
|
|
|
2018-09-06 23:17:54 +03:00
|
|
|
.PHONY: lint-md
|
2017-11-12 22:54:28 +03:00
|
|
|
# Lints the markdown documents maintained by us in the codebase.
|
2017-11-09 02:33:52 +03:00
|
|
|
lint-md: | tools/.mdlintstamp
|
2018-09-06 23:17:54 +03:00
|
|
|
|
2017-04-30 22:07:38 +03:00
|
|
|
|
2018-03-04 08:47:41 +03:00
|
|
|
LINT_JS_TARGETS = .eslintrc.js benchmark doc lib test tools
|
2018-01-20 20:17:47 +03:00
|
|
|
|
|
|
|
run-lint-js = tools/node_modules/eslint/bin/eslint.js --cache \
|
2018-08-16 06:32:58 +03:00
|
|
|
--ext=.js,.mjs,.md $(LINT_JS_TARGETS)
|
2018-01-20 20:17:47 +03:00
|
|
|
run-lint-js-fix = $(run-lint-js) --fix
|
2017-06-05 22:32:57 +03:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: lint-js-fix
|
2017-11-24 05:50:19 +03:00
|
|
|
lint-js-fix:
|
2018-01-20 20:17:47 +03:00
|
|
|
@$(call available-node,$(run-lint-js-fix))
|
2017-11-24 05:50:19 +03:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: lint-js
|
2017-11-12 22:54:28 +03:00
|
|
|
# Note that on the CI `lint-js-ci` is run instead.
|
|
|
|
# Lints the JavaScript code with eslint.
|
2017-09-08 14:44:58 +03:00
|
|
|
lint-js:
|
2017-04-15 11:23:46 +03:00
|
|
|
@echo "Running JS linter..."
|
2018-01-20 20:17:47 +03:00
|
|
|
@$(call available-node,$(run-lint-js))
|
2016-03-10 06:40:54 +03:00
|
|
|
|
2017-09-08 14:44:58 +03:00
|
|
|
jslint: lint-js
|
|
|
|
@echo "Please use lint-js instead of jslint"
|
|
|
|
|
2018-01-20 20:17:47 +03:00
|
|
|
run-lint-js-ci = tools/lint-js.js $(PARALLEL_ARGS) -f tap -o test-eslint.tap \
|
|
|
|
$(LINT_JS_TARGETS)
|
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: lint-js-ci
|
2017-11-12 22:54:28 +03:00
|
|
|
# On the CI the output is emitted in the TAP format.
|
2017-09-08 14:44:58 +03:00
|
|
|
lint-js-ci:
|
2017-04-15 11:23:46 +03:00
|
|
|
@echo "Running JS linter..."
|
2018-01-20 20:17:47 +03:00
|
|
|
@$(call available-node,$(run-lint-js-ci))
|
2017-09-08 14:44:58 +03:00
|
|
|
|
|
|
|
jslint-ci: lint-js-ci
|
|
|
|
@echo "Please use lint-js-ci instead of jslint-ci"
|
2010-10-15 21:05:22 +04:00
|
|
|
|
2018-04-02 12:37:11 +03:00
|
|
|
LINT_CPP_ADDON_DOC_FILES_GLOB = test/addons/??_*/*.cc test/addons/??_*/*.h
|
|
|
|
LINT_CPP_ADDON_DOC_FILES = $(wildcard $(LINT_CPP_ADDON_DOC_FILES_GLOB))
|
2017-09-08 14:44:58 +03:00
|
|
|
LINT_CPP_EXCLUDE ?=
|
|
|
|
LINT_CPP_EXCLUDE += src/node_root_certs.h
|
2018-01-23 13:49:25 +03:00
|
|
|
LINT_CPP_EXCLUDE += $(LINT_CPP_ADDON_DOC_FILES)
|
2018-11-17 23:34:54 +03:00
|
|
|
LINT_CPP_EXCLUDE += $(wildcard test/js-native-api/??_*/*.cc test/js-native-api/??_*/*.h test/node-api/??_*/*.cc test/node-api/??_*/*.h)
|
2017-07-26 11:27:18 +03:00
|
|
|
# These files were copied more or less verbatim from V8.
|
2017-09-08 14:44:58 +03:00
|
|
|
LINT_CPP_EXCLUDE += src/tracing/trace_event.h src/tracing/trace_event_common.h
|
2015-08-18 21:29:10 +03:00
|
|
|
|
2018-01-23 13:49:25 +03:00
|
|
|
LINT_CPP_FILES = $(filter-out $(LINT_CPP_EXCLUDE), $(wildcard \
|
2018-06-15 23:03:12 +03:00
|
|
|
benchmark/napi/function_call/binding.cc \
|
2018-01-23 13:49:25 +03:00
|
|
|
src/*.c \
|
|
|
|
src/*.cc \
|
|
|
|
src/*.h \
|
|
|
|
src/*/*.c \
|
|
|
|
src/*/*.cc \
|
|
|
|
src/*/*.h \
|
|
|
|
test/addons/*/*.cc \
|
|
|
|
test/addons/*/*.h \
|
|
|
|
test/cctest/*.cc \
|
|
|
|
test/cctest/*.h \
|
2018-11-17 23:34:54 +03:00
|
|
|
test/js-native-api/*/*.cc \
|
|
|
|
test/js-native-api/*/*.h \
|
|
|
|
test/node-api/*/*.cc \
|
|
|
|
test/node-api/*/*.h \
|
2018-01-23 13:49:25 +03:00
|
|
|
tools/icu/*.cc \
|
|
|
|
tools/icu/*.h \
|
|
|
|
))
|
|
|
|
|
|
|
|
# Code blocks don't have newline at the end,
|
|
|
|
# and the actual filename is generated so it won't match header guards
|
|
|
|
ADDON_DOC_LINT_FLAGS=-whitespace/ending_newline,-build/header_guard
|
2017-10-22 09:05:26 +03:00
|
|
|
|
2018-07-13 15:19:31 +03:00
|
|
|
format-cpp-build:
|
2018-08-19 00:39:06 +03:00
|
|
|
cd tools/clang-format && $(call available-node,$(run-npm-ci))
|
2018-07-13 15:19:31 +03:00
|
|
|
|
|
|
|
format-cpp-clean:
|
|
|
|
$(RM) -r tools/clang-format/node_modules
|
|
|
|
|
|
|
|
CLANG_FORMAT_START ?= HEAD
|
|
|
|
.PHONY: format-cpp
|
|
|
|
# To format staged changes:
|
|
|
|
# $ make format-cpp
|
|
|
|
# To format HEAD~1...HEAD (latest commit):
|
|
|
|
# $ CLANG_FORMAT_START=`git rev-parse HEAD~1` make format-cpp
|
|
|
|
# To format diff between master and current branch head (master...HEAD):
|
|
|
|
# $ CLANG_FORMAT_START=master make format-cpp
|
|
|
|
format-cpp: ## Format C++ diff from $CLANG_FORMAT_START to current changes
|
|
|
|
ifneq ("","$(wildcard tools/clang-format/node_modules/)")
|
|
|
|
@echo "Formatting C++ diff from $(CLANG_FORMAT_START).."
|
|
|
|
@$(PYTHON) tools/clang-format/node_modules/.bin/git-clang-format \
|
|
|
|
--binary=tools/clang-format/node_modules/.bin/clang-format \
|
|
|
|
--style=file \
|
|
|
|
$(CLANG_FORMAT_START) -- \
|
|
|
|
$(LINT_CPP_FILES)
|
|
|
|
else
|
|
|
|
@echo "clang-format is not installed."
|
|
|
|
@echo "To install (requires internet access) run: $ make format-cpp-build"
|
|
|
|
endif
|
|
|
|
|
2018-10-04 08:49:06 +03:00
|
|
|
ifeq ($(V),1)
|
|
|
|
CPPLINT_QUIET =
|
|
|
|
else
|
|
|
|
CPPLINT_QUIET = --quiet
|
|
|
|
endif
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: lint-cpp
|
2017-11-12 22:54:28 +03:00
|
|
|
# Lints the C++ code with cpplint.py and check-imports.py.
|
2017-10-29 09:50:29 +03:00
|
|
|
lint-cpp: tools/.cpplintstamp
|
|
|
|
|
|
|
|
tools/.cpplintstamp: $(LINT_CPP_FILES)
|
2017-04-15 11:23:46 +03:00
|
|
|
@echo "Running C++ linter..."
|
2018-10-04 08:49:06 +03:00
|
|
|
@$(PYTHON) tools/cpplint.py $(CPPLINT_QUIET) $?
|
2016-04-07 21:56:05 +03:00
|
|
|
@$(PYTHON) tools/check-imports.py
|
2017-10-29 09:50:29 +03:00
|
|
|
@touch $@
|
2010-12-02 04:01:19 +03:00
|
|
|
|
2018-12-12 17:53:19 +03:00
|
|
|
.PHONY: lint-addon-docs
|
|
|
|
lint-addon-docs: tools/.doclintstamp
|
|
|
|
|
|
|
|
tools/.doclintstamp: test/addons/.docbuildstamp
|
2018-01-23 13:49:25 +03:00
|
|
|
@echo "Running C++ linter on addon docs..."
|
2018-10-04 08:49:06 +03:00
|
|
|
@$(PYTHON) tools/cpplint.py $(CPPLINT_QUIET) --filter=$(ADDON_DOC_LINT_FLAGS) \
|
|
|
|
$(LINT_CPP_ADDON_DOC_FILES_GLOB)
|
2018-12-12 17:53:19 +03:00
|
|
|
@touch $@
|
2018-01-23 13:49:25 +03:00
|
|
|
|
2017-09-08 14:44:58 +03:00
|
|
|
cpplint: lint-cpp
|
|
|
|
@echo "Please use lint-cpp instead of cpplint"
|
|
|
|
|
2018-07-24 09:00:13 +03:00
|
|
|
.PHONY: lint-py-build
|
|
|
|
# python -m pip install flake8
|
|
|
|
# Try with '--system' is to overcome systems that blindly set '--user'
|
|
|
|
lint-py-build:
|
|
|
|
@echo "Pip installing flake8 linter on $(shell $(PYTHON) --version)..."
|
|
|
|
$(PYTHON) -m pip install --upgrade -t tools/pip/site-packages flake8 || \
|
|
|
|
$(PYTHON) -m pip install --upgrade --system -t tools/pip/site-packages flake8
|
|
|
|
|
|
|
|
ifneq ("","$(wildcard tools/pip/site-packages)")
|
|
|
|
.PHONY: lint-py
|
|
|
|
# Lints the Python code with flake8.
|
|
|
|
# Flag the build if there are Python syntax errors or undefined names
|
|
|
|
lint-py:
|
|
|
|
PYTHONPATH=tools/pip $(PYTHON) -m flake8 . \
|
|
|
|
--count --show-source --statistics --select=E901,E999,F821,F822,F823 \
|
2018-12-07 09:16:47 +03:00
|
|
|
--exclude=.git,deps,lib,src,tools/*_macros.py,tools/gyp,tools/inspector_protocol,tools/jinja2,tools/markupsafe,tools/pip
|
2018-07-24 09:00:13 +03:00
|
|
|
else
|
|
|
|
lint-py:
|
|
|
|
@echo "Python linting with flake8 is not avalible"
|
|
|
|
@echo "Run 'make lint-py-build'"
|
|
|
|
endif
|
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: lint
|
|
|
|
.PHONY: lint-ci
|
2017-12-22 18:53:42 +03:00
|
|
|
ifneq ("","$(wildcard tools/node_modules/eslint/)")
|
2017-11-26 17:41:56 +03:00
|
|
|
lint: ## Run JS, C++, MD and doc linters.
|
2017-04-15 11:23:46 +03:00
|
|
|
@EXIT_STATUS=0 ; \
|
2017-09-08 14:44:58 +03:00
|
|
|
$(MAKE) lint-js || EXIT_STATUS=$$? ; \
|
|
|
|
$(MAKE) lint-cpp || EXIT_STATUS=$$? ; \
|
2018-01-23 13:49:25 +03:00
|
|
|
$(MAKE) lint-addon-docs || EXIT_STATUS=$$? ; \
|
2018-01-31 08:16:19 +03:00
|
|
|
$(MAKE) lint-md || EXIT_STATUS=$$? ; \
|
2017-04-07 22:07:14 +03:00
|
|
|
exit $$EXIT_STATUS
|
2016-07-09 02:22:46 +03:00
|
|
|
CONFLICT_RE=^>>>>>>> [0-9A-Fa-f]+|^<<<<<<< [A-Za-z]+
|
2017-11-12 22:54:28 +03:00
|
|
|
|
|
|
|
# Related CI job: node-test-linter
|
2018-07-24 09:00:13 +03:00
|
|
|
lint-ci: lint-js-ci lint-cpp lint-py lint-md lint-addon-docs
|
2016-07-09 02:22:46 +03:00
|
|
|
@if ! ( grep -IEqrs "$(CONFLICT_RE)" benchmark deps doc lib src test tools ) \
|
|
|
|
&& ! ( find . -maxdepth 1 -type f | xargs grep -IEqs "$(CONFLICT_RE)" ); then \
|
|
|
|
exit 0 ; \
|
|
|
|
else \
|
|
|
|
echo "" >&2 ; \
|
|
|
|
echo "Conflict marker detected in one or more files. Please fix them first." >&2 ; \
|
|
|
|
exit 1 ; \
|
|
|
|
fi
|
2016-03-14 02:08:11 +03:00
|
|
|
else
|
|
|
|
lint:
|
|
|
|
@echo "Linting is not available through the source tarball."
|
|
|
|
@echo "Use the git repo instead:" \
|
|
|
|
"$ git clone https://github.com/nodejs/node.git"
|
2010-12-02 03:35:46 +03:00
|
|
|
|
2016-03-27 09:12:47 +03:00
|
|
|
lint-ci: lint
|
2016-03-10 06:40:54 +03:00
|
|
|
endif
|
2016-03-27 09:12:47 +03:00
|
|
|
|
2018-01-03 16:14:07 +03:00
|
|
|
.PHONY: lint-clean
|
2017-10-29 09:50:29 +03:00
|
|
|
lint-clean:
|
|
|
|
$(RM) tools/.*lintstamp
|
|
|
|
$(RM) .eslintcache
|