2012-01-17 22:02:15 +00:00
|
|
|
-include config.mk
|
|
|
|
|
2011-11-15 03:02:44 +00:00
|
|
|
BUILDTYPE ?= Release
|
2012-01-08 20:17:28 +00:00
|
|
|
PYTHON ?= python
|
2012-04-21 20:40:48 +00:00
|
|
|
DESTDIR ?=
|
2012-08-02 20:35:41 +00:00
|
|
|
SIGN ?=
|
2013-04-23 18:17:09 +00:00
|
|
|
PREFIX ?= /usr/local
|
2015-08-26 10:38:48 +00:00
|
|
|
FLAKY_TESTS ?= run
|
2015-08-26 10:41:16 +00:00
|
|
|
TEST_CI_ARGS ?=
|
2015-08-13 16:14:34 +00:00
|
|
|
STAGINGSERVER ?= node-www
|
2016-10-09 14:24:23 +00:00
|
|
|
LOGLEVEL ?= silent
|
2015-06-10 07:05:26 +00:00
|
|
|
OSTYPE := $(shell uname -s | tr '[A-Z]' '[a-z]')
|
2017-09-29 01:29:54 +00:00
|
|
|
COVTESTS ?= test-cov
|
2017-02-21 07:43:21 +00:00
|
|
|
GTEST_FILTER ?= "*"
|
2017-05-15 18:24:43 +00:00
|
|
|
GNUMAKEFLAGS += --no-print-directory
|
2017-10-09 18:30:38 +00:00
|
|
|
GCOV ?= gcov
|
2009-12-06 06:35:26 +00:00
|
|
|
|
2016-04-15 03:15:40 +00:00
|
|
|
ifdef JOBS
|
|
|
|
PARALLEL_ARGS = -j $(JOBS)
|
|
|
|
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 04:39:06 +00:00
|
|
|
ifdef QUICKCHECK
|
|
|
|
QUICKCHECK_ARG := --quickcheck
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef ENABLE_V8_TAP
|
2016-06-28 18:35:18 +00: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 04:39:06 +00:00
|
|
|
endif
|
|
|
|
|
2016-02-29 22:44:31 +00: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 04:39:06 +00:00
|
|
|
ifdef DISABLE_V8_I18N
|
2016-02-29 22:44:31 +00:00
|
|
|
V8_TEST_OPTIONS += --noi18n
|
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 04:39:06 +00:00
|
|
|
V8_BUILD_OPTIONS += i18nsupport=off
|
|
|
|
endif
|
|
|
|
|
2017-10-09 18:30:38 +00: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 04:39:06 +00:00
|
|
|
BUILDTYPE_LOWER := $(shell echo $(BUILDTYPE) | tr '[A-Z]' '[a-z]')
|
|
|
|
|
2014-08-30 22:59:05 +00:00
|
|
|
# Determine EXEEXT
|
2014-10-29 14:43:09 +00:00
|
|
|
EXEEXT := $(shell $(PYTHON) -c \
|
|
|
|
"import sys; print('.exe' if sys.platform == 'win32' else '')")
|
2014-08-30 22:59:05 +00:00
|
|
|
|
2015-08-13 16:14:34 +00:00
|
|
|
NODE_EXE = node$(EXEEXT)
|
2015-11-18 22:40:03 +00:00
|
|
|
NODE ?= ./$(NODE_EXE)
|
2015-08-13 16:14:34 +00:00
|
|
|
NODE_G_EXE = node_g$(EXEEXT)
|
2016-09-05 20:34:06 +00:00
|
|
|
NPM ?= ./deps/npm/bin/npm-cli.js
|
2013-02-12 07:22:12 +00:00
|
|
|
|
2015-08-13 15:30:01 +00: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-24 23:19:08 +00: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
|
|
|
|
|
2012-01-26 22:45:16 +00: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 11:23:17 +00:00
|
|
|
ifeq ($(BUILDTYPE),Release)
|
2014-08-30 22:59:05 +00:00
|
|
|
all: out/Makefile $(NODE_EXE)
|
2011-12-17 11:23:17 +00:00
|
|
|
else
|
2014-08-30 22:59:05 +00:00
|
|
|
all: out/Makefile $(NODE_EXE) $(NODE_G_EXE)
|
2011-12-17 11:23:17 +00:00
|
|
|
endif
|
|
|
|
|
2011-12-18 23:10:01 +00:00
|
|
|
# The .PHONY is needed to ensure that we recursively use the out/Makefile
|
|
|
|
# to check for changes.
|
2014-08-30 22:59:05 +00:00
|
|
|
.PHONY: $(NODE_EXE) $(NODE_G_EXE)
|
2011-12-17 11:23:17 +00:00
|
|
|
|
2016-11-28 18:39:47 +00: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
|
2014-08-30 22:59:05 +00:00
|
|
|
$(NODE_EXE): config.gypi out/Makefile
|
2012-07-24 23:19:08 +00:00
|
|
|
$(MAKE) -C out BUILDTYPE=Release V=$(V)
|
2016-12-06 18:28:47 +00:00
|
|
|
if [ ! -r $@ -o ! -L $@ ]; then ln -fs out/Release/$(NODE_EXE) $@; fi
|
2011-12-17 11:23:17 +00:00
|
|
|
|
2014-08-30 22:59:05 +00:00
|
|
|
$(NODE_G_EXE): config.gypi out/Makefile
|
2012-07-24 23:19:08 +00:00
|
|
|
$(MAKE) -C out BUILDTYPE=Debug V=$(V)
|
2016-12-06 18:28:47 +00:00
|
|
|
if [ ! -r $@ -o ! -L $@ ]; then ln -fs out/Debug/$(NODE_EXE) $@; fi
|
2010-10-24 14:15:05 +00:00
|
|
|
|
2016-06-30 16:13:07 +00:00
|
|
|
out/Makefile: common.gypi deps/uv/uv.gyp deps/http_parser/http_parser.gyp \
|
|
|
|
deps/zlib/zlib.gyp deps/v8/gypfiles/toolchain.gypi \
|
|
|
|
deps/v8/gypfiles/features.gypi deps/v8/src/v8.gyp node.gyp \
|
|
|
|
config.gypi
|
2013-11-10 23:15:34 +00:00
|
|
|
$(PYTHON) tools/gyp_node.py -f make
|
2012-09-04 14:03:01 +00:00
|
|
|
|
|
|
|
config.gypi: configure
|
2016-10-12 05:16:51 +00:00
|
|
|
$(error Missing or stale $@, please run ./$<)
|
2010-10-24 14:15:05 +00:00
|
|
|
|
2011-12-14 13:00:10 +00:00
|
|
|
install: all
|
2013-04-23 18:17:09 +00:00
|
|
|
$(PYTHON) tools/install.py $@ '$(DESTDIR)' '$(PREFIX)'
|
2011-12-14 13:00:10 +00:00
|
|
|
|
|
|
|
uninstall:
|
2013-04-23 18:17:09 +00:00
|
|
|
$(PYTHON) tools/install.py $@ '$(DESTDIR)' '$(PREFIX)'
|
2011-11-23 12:19:19 +00:00
|
|
|
|
2011-11-15 03:02:44 +00:00
|
|
|
clean:
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) -r out/Makefile $(NODE_EXE) $(NODE_G_EXE) out/$(BUILDTYPE)/$(NODE_EXE) \
|
2017-10-22 14:43:05 +00:00
|
|
|
out/$(BUILDTYPE)/node.exp
|
2017-04-01 17:12:33 +00: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 14:43:05 +00:00
|
|
|
# Next one is legacy remove this at some point
|
|
|
|
$(RM) -r test/tmp*
|
|
|
|
$(RM) -r test/.tmp*
|
|
|
|
$(MAKE) test-addons-clean
|
2009-10-03 20:42:03 +00:00
|
|
|
|
2011-11-15 03:02:44 +00:00
|
|
|
distclean:
|
2017-04-01 17:12:33 +00: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).*
|
|
|
|
$(RM) -r deps/v8/testing/gmock
|
2010-10-04 09:11:27 +00:00
|
|
|
|
2015-03-19 22:15:54 +00:00
|
|
|
check: test
|
|
|
|
|
2017-01-10 09:21:30 +00:00
|
|
|
# Remove files generated by running coverage, put the non-instrumented lib back
|
|
|
|
# in place
|
|
|
|
coverage-clean:
|
2017-04-01 17:12:33 +00:00
|
|
|
if [ -d lib_ ]; then $(RM) -r lib; mv lib_ lib; fi
|
|
|
|
$(RM) -r node_modules
|
|
|
|
$(RM) -r gcovr testing
|
|
|
|
$(RM) -r out/$(BUILDTYPE)/.coverage
|
2017-09-19 11:52:23 +00:00
|
|
|
$(RM) -r .cov_tmp
|
2017-10-09 18:30:38 +00:00
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/{src,gen}/*.gcda
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/src/tracing/*.gcda
|
2017-10-09 18:30:38 +00:00
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/{src,gen}/*.gcno
|
|
|
|
$(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 09:21:30 +00: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/
|
|
|
|
|
|
|
|
coverage: coverage-test
|
|
|
|
|
|
|
|
coverage-build: all
|
|
|
|
mkdir -p node_modules
|
|
|
|
if [ ! -d node_modules/istanbul-merge ]; then \
|
2017-09-05 09:40:27 +00:00
|
|
|
$(NODE) ./deps/npm install istanbul-merge --no-save --no-package-lock; fi
|
|
|
|
if [ ! -d node_modules/nyc ]; then \
|
|
|
|
$(NODE) ./deps/npm install nyc --no-save --no-package-lock; fi
|
2017-01-10 09:21:30 +00:00
|
|
|
if [ ! -d gcovr ]; then git clone --depth=1 \
|
|
|
|
--single-branch git://github.com/gcovr/gcovr.git; fi
|
|
|
|
if [ ! -d testing ]; then git clone --depth=1 \
|
|
|
|
--single-branch https://github.com/nodejs/testing.git; fi
|
|
|
|
if [ ! -f gcovr/scripts/gcovr.orig ]; then \
|
|
|
|
(cd gcovr && patch -N -p1 < \
|
|
|
|
"$(CURDIR)/testing/coverage/gcovr-patches.diff"); fi
|
2017-04-01 17:12:33 +00:00
|
|
|
if [ -d lib_ ]; then $(RM) -r lib; mv lib_ lib; fi
|
2017-01-10 09:21:30 +00:00
|
|
|
mv lib lib_
|
2017-06-06 00:44:56 +00:00
|
|
|
$(NODE) ./node_modules/.bin/nyc instrument --extension .js --extension .mjs lib_/ lib/
|
2017-01-10 09:21:30 +00:00
|
|
|
$(MAKE)
|
|
|
|
|
|
|
|
coverage-test: coverage-build
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) -r out/$(BUILDTYPE)/.coverage
|
|
|
|
$(RM) -r .cov_tmp
|
2017-10-09 18:30:38 +00:00
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/{src,gen}/*.gcda
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/src/tracing/*.gcda
|
2017-01-10 09:21:30 +00:00
|
|
|
-$(MAKE) $(COVTESTS)
|
|
|
|
mv lib lib__
|
|
|
|
mv lib_ lib
|
|
|
|
mkdir -p coverage .cov_tmp
|
|
|
|
$(NODE) ./node_modules/.bin/istanbul-merge --out \
|
|
|
|
.cov_tmp/libcov.json 'out/Release/.coverage/coverage-*.json'
|
|
|
|
(cd lib && .$(NODE) ../node_modules/.bin/nyc report \
|
2017-09-05 06:33:27 +00:00
|
|
|
--temp-directory "$(CURDIR)/.cov_tmp" \
|
2017-01-10 09:21:30 +00:00
|
|
|
--report-dir "../coverage")
|
|
|
|
-(cd out && "../gcovr/scripts/gcovr" --gcov-exclude='.*deps' \
|
|
|
|
--gcov-exclude='.*usr' -v -r Release/obj.target/node \
|
2017-10-09 18:30:38 +00:00
|
|
|
--html --html-detail -o ../coverage/cxxcoverage.html \
|
|
|
|
--gcov-executable="$(GCOV)")
|
2017-01-10 09:21:30 +00: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'
|
|
|
|
|
2015-03-19 01:01:45 +00:00
|
|
|
cctest: all
|
2017-02-21 07:43:21 +00:00
|
|
|
@out/$(BUILDTYPE)/$@ --gtest_filter=$(GTEST_FILTER)
|
|
|
|
|
|
|
|
list-gtests:
|
|
|
|
ifeq (,$(wildcard out/$(BUILDTYPE)/cctest))
|
|
|
|
$(error Please run 'make cctest' first)
|
|
|
|
endif
|
|
|
|
@out/$(BUILDTYPE)/cctest --gtest_list_tests
|
2015-03-19 01:01:45 +00: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 04:39:06 +00:00
|
|
|
v8:
|
2016-11-01 06:53:37 +00:00
|
|
|
tools/make-v8.sh
|
2016-06-30 06:06:04 +00:00
|
|
|
$(MAKE) -C deps/v8 $(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 04:39:06 +00:00
|
|
|
|
2016-05-12 23:00:09 +00:00
|
|
|
test: all
|
2017-11-14 07:41:10 +00:00
|
|
|
$(MAKE) -s build-addons
|
|
|
|
$(MAKE) -s build-addons-napi
|
|
|
|
$(MAKE) -s doc-only
|
|
|
|
$(MAKE) -s lint
|
|
|
|
$(MAKE) -s cctest
|
2016-04-27 00:28:01 +00:00
|
|
|
$(PYTHON) tools/test.py --mode=release -J \
|
2017-06-20 05:21:33 +00:00
|
|
|
$(CI_ASYNC_HOOKS) \
|
2017-05-31 17:14:34 +00:00
|
|
|
$(CI_JS_SUITES) \
|
2017-09-29 01:29:54 +00:00
|
|
|
$(CI_NATIVE_SUITES) \
|
2017-10-22 06:05:26 +00:00
|
|
|
$(CI_DOC) \
|
|
|
|
known_issues
|
2009-10-03 20:42:03 +00:00
|
|
|
|
2017-10-18 05:58:46 +00:00
|
|
|
# For a quick test, does not run linter or build doc
|
|
|
|
test-only: all
|
|
|
|
$(MAKE) build-addons
|
|
|
|
$(MAKE) build-addons-napi
|
|
|
|
$(MAKE) cctest
|
|
|
|
$(PYTHON) tools/test.py --mode=release -J \
|
|
|
|
$(CI_ASYNC_HOOKS) \
|
|
|
|
$(CI_JS_SUITES) \
|
|
|
|
$(CI_NATIVE_SUITES) \
|
|
|
|
known_issues
|
|
|
|
|
2017-09-29 01:29:54 +00:00
|
|
|
test-cov: all
|
|
|
|
$(MAKE) build-addons
|
|
|
|
$(MAKE) build-addons-napi
|
|
|
|
# $(MAKE) cctest
|
|
|
|
$(PYTHON) tools/test.py --mode=release -J \
|
|
|
|
$(CI_JS_SUITES) \
|
|
|
|
$(CI_NATIVE_SUITES)
|
|
|
|
$(MAKE) lint
|
|
|
|
|
2014-12-17 13:30:04 +00:00
|
|
|
test-parallel: all
|
|
|
|
$(PYTHON) tools/test.py --mode=release parallel -J
|
|
|
|
|
2010-12-22 18:24:34 +00:00
|
|
|
test-valgrind: all
|
2014-12-17 13:30:04 +00:00
|
|
|
$(PYTHON) tools/test.py --mode=release --valgrind sequential parallel message
|
2010-12-22 18:24:34 +00:00
|
|
|
|
2017-04-17 04:01:00 +00:00
|
|
|
test-check-deopts: all
|
|
|
|
$(PYTHON) tools/test.py --mode=release --check-deopts parallel sequential -J
|
|
|
|
|
2017-10-12 10:04:02 +00:00
|
|
|
benchmark/misc/function_call/build/Release/binding.node: all \
|
|
|
|
benchmark/misc/function_call/binding.cc \
|
|
|
|
benchmark/misc/function_call/binding.gyp
|
|
|
|
$(NODE) deps/npm/node_modules/node-gyp/bin/node-gyp rebuild \
|
|
|
|
--python="$(PYTHON)" \
|
|
|
|
--directory="$(shell pwd)/benchmark/misc/function_call" \
|
|
|
|
--nodedir="$(shell pwd)"
|
|
|
|
|
2017-02-11 13:36:30 +00:00
|
|
|
# Implicitly depends on $(NODE_EXE). We don't depend on it explicitly because
|
|
|
|
# it always triggers a rebuild due to it being a .PHONY rule. See the comment
|
|
|
|
# near the build-addons rule for more background.
|
|
|
|
test/gc/build/Release/binding.node: test/gc/binding.cc test/gc/binding.gyp
|
2015-06-12 05:12:20 +00:00
|
|
|
$(NODE) deps/npm/node_modules/node-gyp/bin/node-gyp rebuild \
|
2016-05-09 07:17:06 +00:00
|
|
|
--python="$(PYTHON)" \
|
2017-02-08 14:35:58 +00:00
|
|
|
--directory="$(shell pwd)/test/gc" \
|
2012-06-13 22:55:29 +00:00
|
|
|
--nodedir="$(shell pwd)"
|
2012-05-03 17:16:25 +00:00
|
|
|
|
2016-08-26 14:07:29 +00:00
|
|
|
DOCBUILDSTAMP_PREREQS = tools/doc/addon-verify.js doc/api/addons.md
|
|
|
|
|
|
|
|
ifeq ($(OSTYPE),aix)
|
|
|
|
DOCBUILDSTAMP_PREREQS := $(DOCBUILDSTAMP_PREREQS) out/$(BUILDTYPE)/node.exp
|
|
|
|
endif
|
|
|
|
|
|
|
|
test/addons/.docbuildstamp: $(DOCBUILDSTAMP_PREREQS)
|
2015-12-24 02:56:03 +00:00
|
|
|
$(RM) -r test/addons/??_*/
|
2017-10-22 06:05:26 +00:00
|
|
|
[ -x $(NODE) ] && $(NODE) $< || node $<
|
2015-08-18 19:29:59 +00:00
|
|
|
touch $@
|
|
|
|
|
|
|
|
ADDONS_BINDING_GYPS := \
|
2015-12-24 02:56:03 +00:00
|
|
|
$(filter-out test/addons/??_*/binding.gyp, \
|
2015-08-18 19:29:59 +00:00
|
|
|
$(wildcard test/addons/*/binding.gyp))
|
|
|
|
|
2016-06-10 09:33:14 +00:00
|
|
|
ADDONS_BINDING_SOURCES := \
|
|
|
|
$(filter-out test/addons/??_*/*.cc, $(wildcard test/addons/*/*.cc)) \
|
2016-06-10 09:36:42 +00:00
|
|
|
$(filter-out test/addons/??_*/*.h, $(wildcard test/addons/*/*.h))
|
2016-06-10 09:33:14 +00:00
|
|
|
|
2015-08-18 19:29:59 +00:00
|
|
|
# Implicitly depends on $(NODE_EXE), see the build-addons rule for rationale.
|
2016-05-16 16:32:03 +00:00
|
|
|
# Depends on node-gyp package.json so that build-addons is (re)executed when
|
|
|
|
# node-gyp is updated as part of an npm update.
|
2016-07-27 09:58:11 +00:00
|
|
|
test/addons/.buildstamp: config.gypi \
|
|
|
|
deps/npm/node_modules/node-gyp/package.json \
|
2016-06-10 09:33:14 +00:00
|
|
|
$(ADDONS_BINDING_GYPS) $(ADDONS_BINDING_SOURCES) \
|
2016-04-15 19:19:21 +00:00
|
|
|
deps/uv/include/*.h deps/v8/include/*.h \
|
2016-09-30 14:12:27 +00:00
|
|
|
src/node.h src/node_buffer.h src/node_object_wrap.h src/node_version.h \
|
2016-05-09 13:21:09 +00:00
|
|
|
test/addons/.docbuildstamp
|
2016-10-31 12:07:24 +00:00
|
|
|
# Cannot use $(wildcard test/addons/*/) here, it's evaluated before
|
|
|
|
# embedded addons have been generated from the documentation.
|
2017-10-22 11:23:14 +00:00
|
|
|
# Ignore folders without binding.gyp
|
|
|
|
# (https://github.com/nodejs/node/issues/14843)
|
2016-11-03 19:40:34 +00:00
|
|
|
@for dirname in test/addons/*/; do \
|
2017-10-06 19:21:51 +00:00
|
|
|
if [ ! -f "$$PWD/$${dirname}binding.gyp" ]; then \
|
|
|
|
continue; fi ; \
|
2017-02-20 13:26:51 +00:00
|
|
|
printf "\nBuilding addon $$PWD/$$dirname\n" ; \
|
2016-11-03 19:40:34 +00:00
|
|
|
env MAKEFLAGS="-j1" $(NODE) deps/npm/node_modules/node-gyp/bin/node-gyp \
|
|
|
|
--loglevel=$(LOGLEVEL) rebuild \
|
2016-05-09 07:17:06 +00:00
|
|
|
--python="$(PYTHON)" \
|
2015-08-18 19:29:59 +00:00
|
|
|
--directory="$$PWD/$$dirname" \
|
2016-03-01 01:08:36 +00:00
|
|
|
--nodedir="$$PWD" || exit 1 ; \
|
2015-08-18 19:29:59 +00:00
|
|
|
done
|
|
|
|
touch $@
|
|
|
|
|
2017-10-22 06:05:26 +00:00
|
|
|
# .buildstamp needs $(NODE_EXE) but cannot depend on it
|
2015-08-18 19:29:59 +00:00
|
|
|
# directly because it calls make recursively. The parent make cannot know
|
|
|
|
# if the subprocess touched anything so it pessimistically assumes that
|
2017-10-22 06:05:26 +00:00
|
|
|
# .buildstamp is out of date and need a rebuild.
|
2015-08-18 19:29:59 +00:00
|
|
|
# Just goes to show that recursive make really is harmful...
|
2016-05-16 16:32:03 +00:00
|
|
|
# TODO(bnoordhuis) Force rebuild after gyp update.
|
2017-11-15 15:53:50 +00:00
|
|
|
build-addons: | $(NODE_EXE) test/addons/.buildstamp
|
2014-01-18 22:49:18 +00:00
|
|
|
|
2017-03-20 21:55:26 +00:00
|
|
|
ADDONS_NAPI_BINDING_GYPS := \
|
|
|
|
$(filter-out test/addons-napi/??_*/binding.gyp, \
|
|
|
|
$(wildcard test/addons-napi/*/binding.gyp))
|
|
|
|
|
|
|
|
ADDONS_NAPI_BINDING_SOURCES := \
|
|
|
|
$(filter-out test/addons-napi/??_*/*.cc, $(wildcard test/addons-napi/*/*.cc)) \
|
|
|
|
$(filter-out test/addons-napi/??_*/*.h, $(wildcard test/addons-napi/*/*.h))
|
|
|
|
|
|
|
|
# Implicitly depends on $(NODE_EXE), see the build-addons-napi rule for rationale.
|
|
|
|
test/addons-napi/.buildstamp: config.gypi \
|
|
|
|
deps/npm/node_modules/node-gyp/package.json \
|
|
|
|
$(ADDONS_NAPI_BINDING_GYPS) $(ADDONS_NAPI_BINDING_SOURCES) \
|
|
|
|
deps/uv/include/*.h deps/v8/include/*.h \
|
|
|
|
src/node.h src/node_buffer.h src/node_object_wrap.h src/node_version.h \
|
|
|
|
src/node_api.h src/node_api_types.h
|
|
|
|
# Cannot use $(wildcard test/addons-napi/*/) here, it's evaluated before
|
|
|
|
# embedded addons have been generated from the documentation.
|
2017-10-22 11:23:14 +00:00
|
|
|
# Ignore folders without binding.gyp
|
|
|
|
# (https://github.com/nodejs/node/issues/14843)
|
2017-03-20 21:55:26 +00:00
|
|
|
@for dirname in test/addons-napi/*/; do \
|
2017-10-22 11:23:14 +00:00
|
|
|
if [ ! -f "$$PWD/$${dirname}binding.gyp" ]; then \
|
|
|
|
continue; fi ; \
|
2017-03-20 21:55:26 +00:00
|
|
|
printf "\nBuilding addon $$PWD/$$dirname\n" ; \
|
|
|
|
env MAKEFLAGS="-j1" $(NODE) deps/npm/node_modules/node-gyp/bin/node-gyp \
|
|
|
|
--loglevel=$(LOGLEVEL) rebuild \
|
|
|
|
--python="$(PYTHON)" \
|
|
|
|
--directory="$$PWD/$$dirname" \
|
|
|
|
--nodedir="$$PWD" || exit 1 ; \
|
|
|
|
done
|
|
|
|
touch $@
|
|
|
|
|
2017-10-22 06:05:26 +00:00
|
|
|
# .buildstamp needs $(NODE_EXE) but cannot depend on it
|
2017-03-20 21:55:26 +00:00
|
|
|
# directly because it calls make recursively. The parent make cannot know
|
|
|
|
# if the subprocess touched anything so it pessimistically assumes that
|
2017-10-22 06:05:26 +00:00
|
|
|
# .buildstamp is out of date and need a rebuild.
|
2017-03-20 21:55:26 +00:00
|
|
|
# Just goes to show that recursive make really is harmful...
|
|
|
|
# TODO(bnoordhuis) Force rebuild after gyp or node-gyp update.
|
2017-11-15 15:53:50 +00:00
|
|
|
build-addons-napi: | $(NODE_EXE) test/addons-napi/.buildstamp
|
2017-03-20 21:55:26 +00:00
|
|
|
|
2017-02-08 19:39:24 +00:00
|
|
|
clear-stalled:
|
2017-04-01 18:50:46 +00:00
|
|
|
# Clean up any leftover processes but don't error if found.
|
2017-02-08 19:39:24 +00:00
|
|
|
ps awwx | grep Release/node | grep -v grep | cat
|
2017-04-01 18:50:46 +00:00
|
|
|
@PS_OUT=`ps awwx | grep Release/node | grep -v grep | awk '{print $$1}'`; \
|
|
|
|
if [ "$${PS_OUT}" ]; then \
|
|
|
|
echo $${PS_OUT} | xargs kill; \
|
|
|
|
fi
|
2017-02-08 19:39:24 +00:00
|
|
|
|
2017-02-08 14:35:58 +00:00
|
|
|
test-gc: all test/gc/build/Release/binding.node
|
2012-05-03 17:16:25 +00:00
|
|
|
$(PYTHON) tools/test.py --mode=release gc
|
|
|
|
|
2017-03-27 05:55:19 +00:00
|
|
|
test-gc-clean:
|
|
|
|
$(RM) -r test/gc/build
|
|
|
|
|
2017-03-20 21:55:26 +00:00
|
|
|
test-build: | all build-addons build-addons-napi
|
|
|
|
|
|
|
|
test-build-addons-napi: all build-addons-napi
|
2014-01-18 22:49:18 +00:00
|
|
|
|
2017-02-08 14:35:58 +00:00
|
|
|
test-all: test-build test/gc/build/Release/binding.node
|
2012-05-03 17:16:25 +00:00
|
|
|
$(PYTHON) tools/test.py --mode=debug,release
|
2009-10-03 19:46:59 +00:00
|
|
|
|
2014-01-18 22:49:18 +00:00
|
|
|
test-all-valgrind: test-build
|
2012-01-08 20:17:28 +00:00
|
|
|
$(PYTHON) tools/test.py --mode=debug,release --valgrind
|
2010-12-22 18:24:34 +00:00
|
|
|
|
2017-10-10 21:42:46 +00:00
|
|
|
CI_NATIVE_SUITES ?= addons addons-napi
|
2017-06-20 05:21:33 +00:00
|
|
|
CI_ASYNC_HOOKS := async-hooks
|
2017-09-29 01:29:54 +00:00
|
|
|
CI_JS_SUITES ?= default
|
2017-10-22 06:05:26 +00:00
|
|
|
CI_DOC := doctool
|
2016-06-15 12:42:21 +00:00
|
|
|
|
|
|
|
# Build and test addons without building anything else
|
2016-10-09 14:24:23 +00:00
|
|
|
test-ci-native: LOGLEVEL := info
|
2017-03-20 21:55:26 +00:00
|
|
|
test-ci-native: | test/addons/.buildstamp test/addons-napi/.buildstamp
|
2016-06-15 12:42:21 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) -p tap --logfile test.tap \
|
|
|
|
--mode=release --flaky-tests=$(FLAKY_TESTS) \
|
|
|
|
$(TEST_CI_ARGS) $(CI_NATIVE_SUITES)
|
|
|
|
|
|
|
|
# This target should not use a native compiler at all
|
2017-02-08 19:39:24 +00:00
|
|
|
test-ci-js: | clear-stalled
|
2016-06-15 12:42:21 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) -p tap --logfile test.tap \
|
|
|
|
--mode=release --flaky-tests=$(FLAKY_TESTS) \
|
2017-10-10 21:42:46 +00:00
|
|
|
$(TEST_CI_ARGS) $(CI_ASYNC_HOOKS) $(CI_JS_SUITES) known_issues
|
2017-04-01 18:50:46 +00:00
|
|
|
# Clean up any leftover processes, error if found.
|
|
|
|
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 18:42:29 +00:00
|
|
|
if [ "$${PS_OUT}" ]; then \
|
2017-04-01 18:50:46 +00:00
|
|
|
echo $${PS_OUT} | xargs kill; exit 1; \
|
2017-02-09 18:42:29 +00:00
|
|
|
fi
|
2016-06-15 12:42:21 +00:00
|
|
|
|
2016-10-09 14:24:23 +00:00
|
|
|
test-ci: LOGLEVEL := info
|
2017-10-19 03:06:26 +00:00
|
|
|
test-ci: | clear-stalled build-addons build-addons-napi doc-only
|
2016-08-10 09:47:46 +00:00
|
|
|
out/Release/cctest --gtest_output=tap:cctest.tap
|
2016-04-15 03:15:40 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) -p tap --logfile test.tap \
|
|
|
|
--mode=release --flaky-tests=$(FLAKY_TESTS) \
|
2017-10-22 06:05:26 +00:00
|
|
|
$(TEST_CI_ARGS) $(CI_ASYNC_HOOKS) $(CI_JS_SUITES) $(CI_NATIVE_SUITES) \
|
|
|
|
$(CI_DOC) known_issues
|
2017-04-01 18:50:46 +00:00
|
|
|
# Clean up any leftover processes, error if found.
|
|
|
|
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 18:42:29 +00:00
|
|
|
if [ "$${PS_OUT}" ]; then \
|
2017-04-01 18:50:46 +00:00
|
|
|
echo $${PS_OUT} | xargs kill; exit 1; \
|
2017-02-09 18:42:29 +00:00
|
|
|
fi
|
2015-01-12 22:40:51 +00:00
|
|
|
|
2014-01-18 22:49:18 +00:00
|
|
|
test-release: test-build
|
2012-01-08 20:17:28 +00:00
|
|
|
$(PYTHON) tools/test.py --mode=release
|
2010-03-02 21:18:59 +00:00
|
|
|
|
2014-01-18 22:49:18 +00:00
|
|
|
test-debug: test-build
|
2012-01-08 20:17:28 +00:00
|
|
|
$(PYTHON) tools/test.py --mode=debug
|
2009-10-03 19:46:59 +00:00
|
|
|
|
2014-01-18 22:49:18 +00:00
|
|
|
test-message: test-build
|
2012-01-08 20:17:28 +00:00
|
|
|
$(PYTHON) tools/test.py message
|
2010-06-19 01:14:06 +00:00
|
|
|
|
2015-03-19 01:01:45 +00:00
|
|
|
test-simple: | cctest # Depends on 'all'.
|
2014-12-17 13:30:04 +00:00
|
|
|
$(PYTHON) tools/test.py parallel sequential
|
2010-11-14 23:50:14 +00:00
|
|
|
|
2015-02-26 23:00:07 +00:00
|
|
|
test-pummel: all
|
2012-01-08 20:17:28 +00:00
|
|
|
$(PYTHON) tools/test.py pummel
|
2010-11-14 23:50:14 +00:00
|
|
|
|
2010-11-01 23:03:32 +00:00
|
|
|
test-internet: all
|
2012-01-08 20:17:28 +00:00
|
|
|
$(PYTHON) tools/test.py internet
|
2010-02-25 06:36:17 +00:00
|
|
|
|
2016-12-11 22:37:25 +00:00
|
|
|
test-node-inspect: $(NODE_EXE)
|
|
|
|
USE_EMBEDDED_NODE_INSPECT=1 $(NODE) tools/test-npm-package \
|
|
|
|
--install deps/node-inspect test
|
|
|
|
|
2016-11-07 21:34:54 +00:00
|
|
|
test-tick-processor: all
|
|
|
|
$(PYTHON) tools/test.py tick-processor
|
|
|
|
|
2017-06-02 07:09:49 +00:00
|
|
|
test-hash-seed: all
|
|
|
|
$(NODE) test/pummel/test-hash-seed.js
|
|
|
|
|
2017-10-22 06:05:26 +00:00
|
|
|
test-doc: doc-only
|
|
|
|
$(MAKE) lint
|
|
|
|
$(PYTHON) tools/test.py $(CI_DOC)
|
|
|
|
|
2016-03-02 17:12:47 +00:00
|
|
|
test-known-issues: all
|
2016-05-04 03:51:41 +00:00
|
|
|
$(PYTHON) tools/test.py known_issues
|
2016-03-02 17:12:47 +00:00
|
|
|
|
2014-08-30 22:59:05 +00:00
|
|
|
test-npm: $(NODE_EXE)
|
2017-02-22 22:05:19 +00:00
|
|
|
$(NODE) tools/test-npm-package --install --logfile=test-npm.tap deps/npm test-node
|
2011-12-17 02:04:39 +00:00
|
|
|
|
2014-08-30 22:59:05 +00:00
|
|
|
test-npm-publish: $(NODE_EXE)
|
2015-06-12 05:12:20 +00:00
|
|
|
npm_package_config_publishtest=true $(NODE) deps/npm/test/run.js
|
2011-07-08 17:40:35 +00:00
|
|
|
|
2017-03-20 21:55:26 +00:00
|
|
|
test-addons-napi: test-build-addons-napi
|
|
|
|
$(PYTHON) tools/test.py --mode=release addons-napi
|
|
|
|
|
2017-05-15 04:58:21 +00:00
|
|
|
test-addons-napi-clean:
|
|
|
|
$(RM) -r test/addons-napi/*/build
|
|
|
|
$(RM) test/addons-napi/.buildstamp
|
|
|
|
|
2017-03-20 21:55:26 +00:00
|
|
|
test-addons: test-build test-addons-napi
|
2014-01-18 22:49:18 +00:00
|
|
|
$(PYTHON) tools/test.py --mode=release addons
|
|
|
|
|
2017-02-23 16:39:53 +00:00
|
|
|
test-addons-clean:
|
2017-05-15 04:58:21 +00:00
|
|
|
$(RM) -r test/addons/??_*/
|
|
|
|
$(RM) -r test/addons/*/build
|
2017-02-23 16:39:53 +00:00
|
|
|
$(RM) test/addons/.buildstamp test/addons/.docbuildstamp
|
2017-05-15 04:58:21 +00:00
|
|
|
$(MAKE) test-addons-napi-clean
|
2017-02-23 16:39:53 +00:00
|
|
|
|
2014-07-23 01:03:10 +00:00
|
|
|
test-timers:
|
|
|
|
$(MAKE) --directory=tools faketime
|
|
|
|
$(PYTHON) tools/test.py --mode=release timers
|
|
|
|
|
|
|
|
test-timers-clean:
|
|
|
|
$(MAKE) --directory=tools clean
|
|
|
|
|
2017-04-05 10:04:24 +00:00
|
|
|
test-async-hooks:
|
|
|
|
$(PYTHON) tools/test.py --mode=release async-hooks
|
|
|
|
|
2017-06-20 05:21:33 +00:00
|
|
|
test-with-async-hooks:
|
|
|
|
$(MAKE) build-addons
|
|
|
|
$(MAKE) build-addons-napi
|
|
|
|
$(MAKE) cctest
|
|
|
|
NODE_TEST_WITH_ASYNC_HOOKS=1 $(PYTHON) tools/test.py --mode=release -J \
|
|
|
|
$(CI_JS_SUITES) \
|
|
|
|
$(CI_NATIVE_SUITES)
|
|
|
|
|
2016-03-13 23:08:11 +00:00
|
|
|
|
|
|
|
ifneq ("","$(wildcard deps/v8/tools/run-tests.py)")
|
2017-07-13 14:02:37 +00:00
|
|
|
test-v8: v8
|
2016-10-31 12:07:24 +00:00
|
|
|
# note: performs full test unless QUICKCHECK is specified
|
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 04:39:06 +00:00
|
|
|
deps/v8/tools/run-tests.py --arch=$(V8_ARCH) \
|
2016-02-29 22:44:31 +00:00
|
|
|
--mode=$(BUILDTYPE_LOWER) $(V8_TEST_OPTIONS) $(QUICKCHECK_ARG) \
|
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 04:39:06 +00:00
|
|
|
--no-presubmit \
|
|
|
|
--shell-dir=$(PWD)/deps/v8/out/$(V8_ARCH).$(BUILDTYPE_LOWER) \
|
|
|
|
$(TAP_V8)
|
2017-11-23 07:47:20 +00:00
|
|
|
git clean -fdxq -- deps/v8
|
2017-07-13 14:02:37 +00: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 04:39:06 +00:00
|
|
|
|
2016-06-29 18:05:17 +00:00
|
|
|
test-v8-intl: v8
|
2016-10-31 12:07:24 +00:00
|
|
|
# note: performs full test unless QUICKCHECK is specified
|
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 04:39:06 +00:00
|
|
|
deps/v8/tools/run-tests.py --arch=$(V8_ARCH) \
|
|
|
|
--mode=$(BUILDTYPE_LOWER) --no-presubmit $(QUICKCHECK_ARG) \
|
|
|
|
--shell-dir=deps/v8/out/$(V8_ARCH).$(BUILDTYPE_LOWER) intl \
|
|
|
|
$(TAP_V8_INTL)
|
|
|
|
|
2016-06-29 18:05:17 +00:00
|
|
|
test-v8-benchmarks: v8
|
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 04:39:06 +00:00
|
|
|
deps/v8/tools/run-tests.py --arch=$(V8_ARCH) --mode=$(BUILDTYPE_LOWER) \
|
|
|
|
--download-data $(QUICKCHECK_ARG) --no-presubmit \
|
|
|
|
--shell-dir=deps/v8/out/$(V8_ARCH).$(BUILDTYPE_LOWER) benchmarks \
|
|
|
|
$(TAP_V8_BENCHMARKS)
|
|
|
|
|
|
|
|
test-v8-all: test-v8 test-v8-intl test-v8-benchmarks
|
2016-10-31 12:07:24 +00:00
|
|
|
# runs all v8 tests
|
2016-03-13 23:08:11 +00: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 04:39:06 +00:00
|
|
|
|
2017-01-25 20:54:34 +00:00
|
|
|
# Google Analytics ID used for tracking API docs page views, empty
|
|
|
|
# DOCS_ANALYTICS means no tracking scripts will be included in the
|
|
|
|
# generated .html files
|
|
|
|
DOCS_ANALYTICS ?=
|
|
|
|
|
2017-11-17 17:19:22 +00:00
|
|
|
apidoc_dirs = out/doc out/doc/api out/doc/api/assets
|
2016-04-20 22:12:40 +00:00
|
|
|
apidoc_sources = $(wildcard doc/api/*.md)
|
2017-11-17 17:19:22 +00:00
|
|
|
apidocs_html = $(addprefix out/,$(apidoc_sources:.md=.html))
|
|
|
|
apidocs_json = $(addprefix out/,$(apidoc_sources:.md=.json))
|
2010-10-28 22:10:20 +00:00
|
|
|
|
2011-08-23 21:08:53 +00:00
|
|
|
apiassets = $(subst api_assets,api/assets,$(addprefix out/,$(wildcard doc/api_assets/*)))
|
2010-11-13 22:57:35 +00:00
|
|
|
|
2017-11-17 17:19:22 +00:00
|
|
|
# This uses the locally built node if available, otherwise uses the global node
|
|
|
|
doc-only: $(apidoc_dirs) $(apiassets)
|
|
|
|
# If it's a source tarball, assets are already in doc/api/assets,
|
|
|
|
# no need to install anything, we have already copied the docs over
|
|
|
|
if [ ! -d doc/api/assets ]; then \
|
|
|
|
$(MAKE) tools/doc/node_modules/js-yaml/package.json; \
|
|
|
|
fi;
|
|
|
|
@$(MAKE) -s $(apidocs_html) $(apidocs_json)
|
|
|
|
|
2015-11-18 22:40:03 +00:00
|
|
|
doc: $(NODE_EXE) doc-only
|
2010-11-13 22:57:35 +00:00
|
|
|
|
2017-11-17 17:19:22 +00: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-28 22:10:20 +00:00
|
|
|
|
2017-11-17 17:19:22 +00: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 00:57:10 +00:00
|
|
|
out/doc/api/assets/%: doc/api_assets/% out/doc/api/assets
|
2017-10-26 12:28:56 +00:00
|
|
|
@cp $< $@
|
2010-11-14 23:50:14 +00:00
|
|
|
|
2017-11-17 17:19:22 +00: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` ]; then \
|
|
|
|
`which node` $(1); \
|
|
|
|
else \
|
|
|
|
echo "No available node, cannot run \"node $(1)\""; \
|
|
|
|
exit 1; \
|
|
|
|
fi;
|
|
|
|
|
2017-11-22 08:44:01 +00:00
|
|
|
run-npm-install = $(PWD)/$(NPM) install --production
|
2017-11-17 17:19:22 +00:00
|
|
|
|
|
|
|
tools/doc/node_modules/js-yaml/package.json:
|
|
|
|
cd tools/doc && $(call available-node,$(run-npm-install))
|
2010-11-16 04:23:12 +00:00
|
|
|
|
2016-05-20 21:16:47 +00:00
|
|
|
gen-json = tools/doc/generate.js --format=json $< > $@
|
2017-06-05 19:32:57 +00:00
|
|
|
gen-html = tools/doc/generate.js --node-version=$(FULLVERSION) --format=html \
|
|
|
|
--template=doc/template.html --analytics=$(DOCS_ANALYTICS) $< > $@
|
|
|
|
|
|
|
|
out/doc/api/%.json: doc/api/%.md
|
2017-11-17 17:19:22 +00:00
|
|
|
$(call available-node, $(gen-json))
|
2012-02-27 18:59:35 +00:00
|
|
|
|
2015-11-18 22:40:03 +00:00
|
|
|
out/doc/api/%.html: doc/api/%.md
|
2017-11-17 17:19:22 +00:00
|
|
|
$(call available-node, $(gen-html))
|
2010-11-14 23:50:14 +00:00
|
|
|
|
2016-11-03 09:03:13 +00:00
|
|
|
docopen: $(apidocs_html)
|
|
|
|
@$(PYTHON) -mwebbrowser file://$(PWD)/out/doc/api/all.html
|
2009-10-03 19:46:59 +00:00
|
|
|
|
2009-12-30 01:45:15 +00:00
|
|
|
docclean:
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) -r out/doc
|
2009-12-30 01:45:15 +00:00
|
|
|
|
2016-06-15 12:42:21 +00:00
|
|
|
build-ci:
|
2015-07-08 14:11:24 +00:00
|
|
|
$(PYTHON) ./configure $(CONFIG_FLAGS)
|
|
|
|
$(MAKE)
|
2016-06-15 12:42:21 +00:00
|
|
|
|
|
|
|
run-ci: build-ci
|
2015-07-08 14:11:24 +00:00
|
|
|
$(MAKE) test-ci
|
|
|
|
|
2013-06-04 00:05:56 +00:00
|
|
|
RAWVER=$(shell $(PYTHON) tools/getnodeversion.py)
|
|
|
|
VERSION=v$(RAWVER)
|
2015-06-10 07:05:26 +00: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-13 23:53:26 +00:00
|
|
|
FULLVERSION=$(VERSION)
|
2015-06-10 07:05:26 +00: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 12:22:23 +00:00
|
|
|
RELEASE=$(shell sed -ne 's/\#define NODE_VERSION_IS_RELEASE \([01]\)/\1/p' src/node_version.h)
|
2012-08-04 19:07:17 +00:00
|
|
|
PLATFORM=$(shell uname | tr '[:upper:]' '[:lower:]')
|
2015-01-13 23:53:26 +00:00
|
|
|
NPMVERSION=v$(shell cat deps/npm/package.json | grep '"version"' | sed 's/^[^:]*: "\([^"]*\)",.*/\1/')
|
2015-06-10 07:05:26 +00:00
|
|
|
|
2016-04-20 17:12:14 +00:00
|
|
|
UNAME_M=$(shell uname -m)
|
|
|
|
ifeq ($(findstring x86_64,$(UNAME_M)),x86_64)
|
2012-08-09 23:30:41 +00:00
|
|
|
DESTCPU ?= x64
|
2012-08-04 19:39:54 +00:00
|
|
|
else
|
2016-04-20 17:12:14 +00: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)
|
|
|
|
DESTCPU ?= aarch64
|
|
|
|
else
|
|
|
|
ifeq ($(findstring powerpc,$(shell uname -p)),powerpc)
|
|
|
|
DESTCPU ?= ppc64
|
|
|
|
else
|
2015-06-10 07:05:26 +00:00
|
|
|
DESTCPU ?= x86
|
2012-08-04 19:39:54 +00:00
|
|
|
endif
|
2016-04-20 17:12:14 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
2012-08-09 23:30:41 +00:00
|
|
|
ifeq ($(DESTCPU),x64)
|
|
|
|
ARCH=x64
|
|
|
|
else
|
2012-11-27 05:03:36 +00:00
|
|
|
ifeq ($(DESTCPU),arm)
|
|
|
|
ARCH=arm
|
|
|
|
else
|
2016-02-11 02:57:20 +00:00
|
|
|
ifeq ($(DESTCPU),aarch64)
|
|
|
|
ARCH=arm64
|
|
|
|
else
|
2015-07-07 18:15:03 +00:00
|
|
|
ifeq ($(DESTCPU),ppc64)
|
|
|
|
ARCH=ppc64
|
|
|
|
else
|
|
|
|
ifeq ($(DESTCPU),ppc)
|
|
|
|
ARCH=ppc
|
|
|
|
else
|
2016-03-28 21:03:06 +00:00
|
|
|
ifeq ($(DESTCPU),s390)
|
|
|
|
ARCH=s390
|
|
|
|
else
|
|
|
|
ifeq ($(DESTCPU),s390x)
|
|
|
|
ARCH=s390x
|
|
|
|
else
|
2012-08-09 23:30:41 +00:00
|
|
|
ARCH=x86
|
2012-08-04 19:39:54 +00:00
|
|
|
endif
|
2012-11-27 05:03:36 +00:00
|
|
|
endif
|
2015-07-07 18:15:03 +00:00
|
|
|
endif
|
|
|
|
endif
|
2016-02-11 02:57:20 +00:00
|
|
|
endif
|
2016-03-28 21:03:06 +00:00
|
|
|
endif
|
|
|
|
endif
|
2015-06-10 07:05:26 +00: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 04:39:06 +00: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 07:05:26 +00: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 06:51:00 +00:00
|
|
|
endif
|
2015-06-10 07:05:26 +00:00
|
|
|
ifeq ($(DESTCPU),ia32)
|
|
|
|
override DESTCPU=x86
|
|
|
|
endif
|
|
|
|
|
2015-08-13 16:14:34 +00:00
|
|
|
TARNAME=node-$(FULLVERSION)
|
2015-01-13 01:51:34 +00:00
|
|
|
TARBALL=$(TARNAME).tar
|
2016-01-11 19:54:33 +00:00
|
|
|
# Custom user-specified variation, use it directly
|
|
|
|
ifdef VARIATION
|
|
|
|
BINARYNAME=$(TARNAME)-$(PLATFORM)-$(ARCH)-$(VARIATION)
|
|
|
|
else
|
2012-08-04 19:07:17 +00:00
|
|
|
BINARYNAME=$(TARNAME)-$(PLATFORM)-$(ARCH)
|
2016-01-11 19:54:33 +00:00
|
|
|
endif
|
2015-01-13 01:51:34 +00:00
|
|
|
BINARYTAR=$(BINARYNAME).tar
|
2015-06-10 07:05:26 +00:00
|
|
|
# OSX doesn't have xz installed by default, http://macpkg.sourceforge.net/
|
2015-01-13 01:51:34 +00:00
|
|
|
XZ=$(shell which xz > /dev/null 2>&1; echo $$?)
|
2017-01-05 05:09:32 +00:00
|
|
|
XZ_COMPRESSION ?= 9e
|
2015-06-10 07:05:26 +00:00
|
|
|
PKG=$(TARNAME).pkg
|
2017-09-04 10:07:56 +00:00
|
|
|
MACOSOUTDIR=out/macos
|
2011-11-21 03:22:30 +00:00
|
|
|
|
2012-08-04 22:34:04 +00:00
|
|
|
release-only:
|
2016-08-29 18:18:46 +00:00
|
|
|
@if [ "$(DISTTYPE)" != "nightly" ] && [ "$(DISTTYPE)" != "next-nightly" ] && \
|
|
|
|
`grep -q REPLACEME doc/api/*.md`; then \
|
2017-01-18 12:53:04 +00:00
|
|
|
echo 'Please update REPLACEME in Added: tags in doc/api/*.md (See doc/releases.md)' ; \
|
2016-05-13 21:24:33 +00:00
|
|
|
exit 1 ; \
|
|
|
|
fi
|
2017-08-08 22:00:17 +00:00
|
|
|
@if [ "$(DISTTYPE)" != "nightly" ] && [ "$(DISTTYPE)" != "next-nightly" ] && \
|
|
|
|
`grep -q DEP00XX doc/api/deprecations.md`; then \
|
|
|
|
echo 'Please update DEP00XX in doc/api/deprecations.md (See doc/releases.md)' ; \
|
|
|
|
exit 1 ; \
|
|
|
|
fi
|
2012-08-04 22:34:04 +00:00
|
|
|
@if [ "$(shell git status --porcelain | egrep -v '^\?\? ')" = "" ]; then \
|
|
|
|
exit 0 ; \
|
|
|
|
else \
|
2015-01-18 06:41:37 +00:00
|
|
|
echo "" >&2 ; \
|
2012-08-04 22:34:04 +00: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 07:05:26 +00:00
|
|
|
@if [ "$(DISTTYPE)" != "release" -o "$(RELEASE)" = "1" ]; then \
|
2012-08-04 22:34:04 +00:00
|
|
|
exit 0; \
|
|
|
|
else \
|
2015-01-18 06:41:37 +00:00
|
|
|
echo "" >&2 ; \
|
2012-08-09 23:30:41 +00:00
|
|
|
echo "#NODE_VERSION_IS_RELEASE is set to $(RELEASE)." >&2 ; \
|
2015-01-18 06:41:37 +00:00
|
|
|
echo "Did you remember to update src/node_version.h?" >&2 ; \
|
|
|
|
echo "" >&2 ; \
|
2012-08-04 22:34:04 +00:00
|
|
|
exit 1 ; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
$(PKG): release-only
|
2017-09-04 10:07:56 +00: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 06:41:37 +00:00
|
|
|
$(PYTHON) ./configure \
|
|
|
|
--dest-cpu=x64 \
|
|
|
|
--tag=$(TAG) \
|
|
|
|
--release-urlbase=$(RELEASE_URLBASE) \
|
2015-08-13 15:30:01 +00:00
|
|
|
$(CONFIG_FLAGS) $(BUILD_RELEASE_FLAGS)
|
2017-09-04 10:07:56 +00:00
|
|
|
$(MAKE) install V=$(V) DESTDIR=$(MACOSOUTDIR)/dist/node
|
|
|
|
SIGN="$(CODESIGN_CERT)" PKGDIR="$(MACOSOUTDIR)/dist/node/usr/local" bash \
|
2017-07-12 00:04:53 +00:00
|
|
|
tools/osx-codesign.sh
|
2017-09-04 10:07:56 +00: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 07:05:26 +00:00
|
|
|
SIGN="$(PRODUCTSIGN_CERT)" PKG="$(PKG)" bash tools/osx-productsign.sh
|
|
|
|
|
|
|
|
pkg: $(PKG)
|
|
|
|
|
|
|
|
pkg-upload: pkg
|
2015-08-31 07:03:26 +00:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-09-15 17:32:37 +00: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-11 22:31:15 +00:00
|
|
|
|
2014-08-30 22:59:05 +00:00
|
|
|
$(TARBALL): release-only $(NODE_EXE) doc
|
2015-02-26 00:08:16 +00:00
|
|
|
git checkout-index -a -f --prefix=$(TARNAME)/
|
2012-06-06 22:01:31 +00:00
|
|
|
mkdir -p $(TARNAME)/doc/api
|
2015-08-13 16:14:34 +00:00
|
|
|
cp doc/node.1 $(TARNAME)/doc/node.1
|
2012-06-06 22:01:31 +00:00
|
|
|
cp -r out/doc/api/* $(TARNAME)/doc/api/
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) -r $(TARNAME)/deps/v8/{test,samples,tools/profviz,tools/run-tests.py}
|
|
|
|
$(RM) -r $(TARNAME)/doc/images # too big
|
|
|
|
$(RM) -r $(TARNAME)/deps/uv/{docs,samples,test}
|
|
|
|
$(RM) -r $(TARNAME)/deps/openssl/openssl/{doc,demos,test}
|
|
|
|
$(RM) -r $(TARNAME)/deps/zlib/contrib # too big, unused
|
|
|
|
$(RM) -r $(TARNAME)/.{editorconfig,git*,mailmap}
|
2017-04-30 19:07:38 +00:00
|
|
|
$(RM) -r $(TARNAME)/tools/{eslint,eslint-rules,osx-pkg.pmdoc,pkgsrc,remark-cli,remark-preset-lint-node}
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) -r $(TARNAME)/tools/{osx-*,license-builder.sh,cpplint.py}
|
|
|
|
$(RM) -r $(TARNAME)/test*.tap
|
|
|
|
find $(TARNAME)/ -name ".eslint*" -maxdepth 2 | xargs $(RM)
|
|
|
|
find $(TARNAME)/ -type l | xargs $(RM) # annoying on windows
|
2010-05-13 22:54:50 +00:00
|
|
|
tar -cf $(TARNAME).tar $(TARNAME)
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) -r $(TARNAME)
|
2015-01-13 01:51:34 +00:00
|
|
|
gzip -c -f -9 $(TARNAME).tar > $(TARNAME).tar.gz
|
|
|
|
ifeq ($(XZ), 0)
|
2015-04-15 00:49:29 +00:00
|
|
|
xz -c -f -$(XZ_COMPRESSION) $(TARNAME).tar > $(TARNAME).tar.xz
|
2015-01-13 01:51:34 +00:00
|
|
|
endif
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) $(TARNAME).tar
|
2009-10-03 19:46:59 +00:00
|
|
|
|
2012-08-04 19:12:22 +00:00
|
|
|
tar: $(TARBALL)
|
|
|
|
|
2015-06-10 07:05:26 +00:00
|
|
|
tar-upload: tar
|
2015-08-31 07:03:26 +00:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-09-15 17:32:37 +00: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"
|
2015-06-10 07:05:26 +00:00
|
|
|
ifeq ($(XZ), 0)
|
2015-09-15 17:32:37 +00: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 07:05:26 +00:00
|
|
|
endif
|
|
|
|
|
2017-01-25 20:54:34 +00:00
|
|
|
doc-upload: doc
|
2017-05-11 02:09:50 +00:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/docs/"
|
2015-08-31 07:33:22 +00:00
|
|
|
chmod -R ug=rw-x+X,o=r+X out/doc/
|
2017-05-11 02:09:50 +00:00
|
|
|
scp -pr out/doc/* $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/docs/
|
2015-08-31 07:03:26 +00:00
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/docs.done"
|
2015-06-10 07:05:26 +00:00
|
|
|
|
2016-03-31 17:23:42 +00:00
|
|
|
$(TARBALL)-headers: release-only
|
2015-01-18 06:41:37 +00:00
|
|
|
$(PYTHON) ./configure \
|
|
|
|
--prefix=/ \
|
|
|
|
--dest-cpu=$(DESTCPU) \
|
|
|
|
--tag=$(TAG) \
|
|
|
|
--release-urlbase=$(RELEASE_URLBASE) \
|
2015-08-13 15:30:01 +00:00
|
|
|
$(CONFIG_FLAGS) $(BUILD_RELEASE_FLAGS)
|
2015-06-30 06:57:47 +00:00
|
|
|
HEADERS_ONLY=1 $(PYTHON) tools/install.py install '$(TARNAME)' '/'
|
2017-04-01 17:12:33 +00:00
|
|
|
find $(TARNAME)/ -type l | xargs $(RM)
|
2015-06-14 10:23:43 +00:00
|
|
|
tar -cf $(TARNAME)-headers.tar $(TARNAME)
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) -r $(TARNAME)
|
2015-06-14 10:23:43 +00:00
|
|
|
gzip -c -f -9 $(TARNAME)-headers.tar > $(TARNAME)-headers.tar.gz
|
|
|
|
ifeq ($(XZ), 0)
|
|
|
|
xz -c -f -$(XZ_COMPRESSION) $(TARNAME)-headers.tar > $(TARNAME)-headers.tar.xz
|
|
|
|
endif
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) $(TARNAME)-headers.tar
|
2015-06-14 10:23:43 +00:00
|
|
|
|
|
|
|
tar-headers: $(TARBALL)-headers
|
|
|
|
|
|
|
|
tar-headers-upload: tar-headers
|
2015-08-31 07:03:26 +00:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-08-31 07:33:22 +00:00
|
|
|
chmod 664 $(TARNAME)-headers.tar.gz
|
2015-08-31 07:03:26 +00: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"
|
2015-06-14 10:23:43 +00:00
|
|
|
ifeq ($(XZ), 0)
|
2015-08-31 07:33:22 +00:00
|
|
|
chmod 664 $(TARNAME)-headers.tar.xz
|
2015-08-31 07:03:26 +00: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 10:23:43 +00:00
|
|
|
endif
|
|
|
|
|
2012-08-04 22:34:04 +00:00
|
|
|
$(BINARYTAR): release-only
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) -r $(BINARYNAME)
|
|
|
|
$(RM) -r out/deps out/Release
|
2015-01-18 06:41:37 +00:00
|
|
|
$(PYTHON) ./configure \
|
|
|
|
--prefix=/ \
|
|
|
|
--dest-cpu=$(DESTCPU) \
|
|
|
|
--tag=$(TAG) \
|
|
|
|
--release-urlbase=$(RELEASE_URLBASE) \
|
2015-08-13 15:30:01 +00:00
|
|
|
$(CONFIG_FLAGS) $(BUILD_RELEASE_FLAGS)
|
2012-08-04 19:07:17 +00:00
|
|
|
$(MAKE) install DESTDIR=$(BINARYNAME) V=$(V) PORTABLE=1
|
|
|
|
cp README.md $(BINARYNAME)
|
|
|
|
cp LICENSE $(BINARYNAME)
|
2015-01-14 02:16:16 +00:00
|
|
|
cp CHANGELOG.md $(BINARYNAME)
|
2017-07-12 00:05:39 +00:00
|
|
|
ifeq ($(OSTYPE),darwin)
|
|
|
|
SIGN="$(CODESIGN_CERT)" PKGDIR="$(BINARYNAME)" bash tools/osx-codesign.sh
|
|
|
|
endif
|
2012-08-04 19:07:17 +00:00
|
|
|
tar -cf $(BINARYNAME).tar $(BINARYNAME)
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) -r $(BINARYNAME)
|
2015-01-13 01:51:34 +00:00
|
|
|
gzip -c -f -9 $(BINARYNAME).tar > $(BINARYNAME).tar.gz
|
|
|
|
ifeq ($(XZ), 0)
|
2015-04-15 00:49:29 +00:00
|
|
|
xz -c -f -$(XZ_COMPRESSION) $(BINARYNAME).tar > $(BINARYNAME).tar.xz
|
2015-01-13 01:51:34 +00:00
|
|
|
endif
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) $(BINARYNAME).tar
|
2012-08-04 19:07:17 +00:00
|
|
|
|
2012-08-04 19:12:37 +00:00
|
|
|
binary: $(BINARYTAR)
|
|
|
|
|
2015-06-10 07:05:26 +00:00
|
|
|
binary-upload: binary
|
2015-08-31 07:03:26 +00:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-09-15 17:32:37 +00: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"
|
2015-06-10 07:05:26 +00:00
|
|
|
ifeq ($(XZ), 0)
|
2015-09-15 17:32:37 +00: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 07:05:26 +00:00
|
|
|
endif
|
2013-06-04 00:05:56 +00:00
|
|
|
|
2013-02-12 07:22:12 +00:00
|
|
|
bench-net: all
|
2016-01-30 13:27:02 +00:00
|
|
|
@$(NODE) benchmark/run.js net
|
2013-02-12 07:22:12 +00:00
|
|
|
|
2013-02-20 00:57:59 +00:00
|
|
|
bench-crypto: all
|
2016-01-30 13:27:02 +00:00
|
|
|
@$(NODE) benchmark/run.js crypto
|
2013-02-20 00:57:59 +00:00
|
|
|
|
2013-02-12 07:22:12 +00:00
|
|
|
bench-tls: all
|
2016-01-30 13:27:02 +00:00
|
|
|
@$(NODE) benchmark/run.js tls
|
2013-02-12 07:22:12 +00:00
|
|
|
|
2016-08-05 09:34:50 +00:00
|
|
|
bench-http: all
|
2016-01-30 13:27:02 +00:00
|
|
|
@$(NODE) benchmark/run.js http
|
2013-02-12 07:22:12 +00:00
|
|
|
|
|
|
|
bench-fs: all
|
2016-01-30 13:27:02 +00:00
|
|
|
@$(NODE) benchmark/run.js fs
|
2013-02-12 07:22:12 +00:00
|
|
|
|
2017-10-12 10:04:02 +00:00
|
|
|
bench-misc: benchmark/misc/function_call/build/Release/binding.node
|
2016-01-30 13:27:02 +00:00
|
|
|
@$(NODE) benchmark/run.js misc
|
2013-02-12 07:22:12 +00:00
|
|
|
|
|
|
|
bench-array: all
|
2016-01-30 13:27:02 +00:00
|
|
|
@$(NODE) benchmark/run.js arrays
|
2013-02-12 07:22:12 +00:00
|
|
|
|
|
|
|
bench-buffer: all
|
2016-01-30 13:27:02 +00:00
|
|
|
@$(NODE) benchmark/run.js buffers
|
2013-02-12 07:22:12 +00:00
|
|
|
|
2015-01-23 23:56:04 +00:00
|
|
|
bench-url: all
|
2016-01-30 13:27:02 +00:00
|
|
|
@$(NODE) benchmark/run.js url
|
2015-01-23 23:56:04 +00:00
|
|
|
|
|
|
|
bench-events: all
|
2016-01-30 13:27:02 +00:00
|
|
|
@$(NODE) benchmark/run.js events
|
2015-01-23 23:56:04 +00:00
|
|
|
|
2015-11-22 09:08:45 +00:00
|
|
|
bench-util: all
|
2016-01-30 13:27:02 +00:00
|
|
|
@$(NODE) benchmark/run.js util
|
2015-11-22 09:08:45 +00:00
|
|
|
|
2016-01-29 13:18:27 +00:00
|
|
|
bench-dgram: all
|
2016-01-30 13:27:02 +00:00
|
|
|
@$(NODE) benchmark/run.js dgram
|
2016-01-29 13:18:27 +00:00
|
|
|
|
|
|
|
bench-all: bench bench-misc bench-array bench-buffer bench-url bench-events bench-dgram bench-util
|
2013-02-13 22:18:27 +00:00
|
|
|
|
|
|
|
bench: bench-net bench-http bench-fs bench-tls
|
2013-02-12 07:22:12 +00:00
|
|
|
|
2016-03-27 06:12:47 +00:00
|
|
|
bench-ci: bench
|
|
|
|
|
2017-05-26 08:01:27 +00:00
|
|
|
lint-md-clean:
|
|
|
|
$(RM) -r tools/remark-cli/node_modules
|
|
|
|
$(RM) -r tools/remark-preset-lint-node/node_modules
|
2017-10-29 06:50:29 +00:00
|
|
|
$(RM) tools/.*mdlintstamp
|
2017-05-26 08:01:27 +00:00
|
|
|
|
2017-05-22 21:46:09 +00:00
|
|
|
lint-md-build:
|
2017-10-27 13:15:01 +00:00
|
|
|
@if [ ! -d tools/remark-cli/node_modules ]; then \
|
|
|
|
echo "Markdown linter: installing remark-cli into tools/"; \
|
2017-05-22 21:46:09 +00:00
|
|
|
cd tools/remark-cli && ../../$(NODE) ../../$(NPM) install; fi
|
2017-10-27 13:15:01 +00:00
|
|
|
@if [ ! -d tools/remark-preset-lint-node/node_modules ]; then \
|
|
|
|
echo "Markdown linter: installing remark-preset-lint-node into tools/"; \
|
2017-05-22 21:46:09 +00:00
|
|
|
cd tools/remark-preset-lint-node && ../../$(NODE) ../../$(NPM) install; fi
|
|
|
|
|
2017-11-08 23:33:52 +00:00
|
|
|
ifneq ("","$(wildcard tools/remark-cli/node_modules/)")
|
2017-10-29 06:50:29 +00:00
|
|
|
LINT_MD_TARGETS = src lib benchmark tools/doc tools/icu
|
|
|
|
LINT_MD_ROOT_DOCS := $(wildcard *.md)
|
|
|
|
LINT_MD_FILES := $(shell find $(LINT_MD_TARGETS) -type f \
|
|
|
|
-not -path '*node_modules*' -name '*.md') $(LINT_MD_ROOT_DOCS)
|
|
|
|
LINT_DOC_MD_FILES = $(shell ls doc/**/*.md)
|
|
|
|
|
|
|
|
tools/.docmdlintstamp: $(LINT_DOC_MD_FILES)
|
|
|
|
@echo "Running Markdown linter on docs..."
|
|
|
|
@$(NODE) tools/remark-cli/cli.js -q -f $(LINT_DOC_MD_FILES)
|
|
|
|
@touch $@
|
|
|
|
|
|
|
|
tools/.miscmdlintstamp: $(LINT_MD_FILES)
|
|
|
|
@echo "Running Markdown linter on misc docs..."
|
|
|
|
@$(NODE) tools/remark-cli/cli.js -q -f $(LINT_MD_FILES)
|
|
|
|
@touch $@
|
|
|
|
|
|
|
|
tools/.mdlintstamp: tools/.miscmdlintstamp tools/.docmdlintstamp
|
|
|
|
|
2017-11-08 23:33:52 +00:00
|
|
|
lint-md: | tools/.mdlintstamp
|
|
|
|
else
|
|
|
|
lint-md:
|
|
|
|
@echo "The markdown linter is not installed."
|
|
|
|
@echo "To install (requires internet access) run: $ make lint-md-build"
|
|
|
|
endif
|
2017-04-30 19:07:38 +00:00
|
|
|
|
2017-09-08 11:44:58 +00:00
|
|
|
LINT_JS_TARGETS = benchmark doc lib test tools
|
2017-10-22 06:05:26 +00:00
|
|
|
LINT_JS_CMD = tools/eslint/bin/eslint.js --cache \
|
|
|
|
--rulesdir=tools/eslint-rules --ext=.js,.mjs,.md \
|
|
|
|
$(LINT_JS_TARGETS)
|
2017-06-05 19:32:57 +00:00
|
|
|
|
2017-11-24 02:50:19 +00:00
|
|
|
lint-js-fix:
|
|
|
|
@if [ -x $(NODE) ]; then \
|
|
|
|
$(NODE) $(LINT_JS_CMD) --fix; \
|
|
|
|
else \
|
|
|
|
node $(LINT_JS_CMD) --fix; \
|
|
|
|
fi
|
|
|
|
|
2017-09-08 11:44:58 +00:00
|
|
|
lint-js:
|
2017-04-15 08:23:46 +00:00
|
|
|
@echo "Running JS linter..."
|
2017-10-22 06:05:26 +00:00
|
|
|
@if [ -x $(NODE) ]; then \
|
|
|
|
$(NODE) $(LINT_JS_CMD); \
|
|
|
|
else \
|
|
|
|
node $(LINT_JS_CMD); \
|
|
|
|
fi
|
2016-03-10 03:40:54 +00:00
|
|
|
|
2017-09-08 11:44:58 +00:00
|
|
|
jslint: lint-js
|
|
|
|
@echo "Please use lint-js instead of jslint"
|
|
|
|
|
|
|
|
lint-js-ci:
|
2017-04-15 08:23:46 +00:00
|
|
|
@echo "Running JS linter..."
|
2017-10-22 06:05:26 +00:00
|
|
|
@if [ -x $(NODE) ]; then \
|
|
|
|
$(NODE) tools/lint-js.js $(PARALLEL_ARGS) -f tap -o test-eslint.tap \
|
|
|
|
$(LINT_JS_TARGETS); \
|
|
|
|
else \
|
|
|
|
node tools/lint-js.js $(PARALLEL_ARGS) -f tap -o test-eslint.tap \
|
|
|
|
$(LINT_JS_TARGETS); \
|
|
|
|
fi
|
2017-09-08 11:44:58 +00:00
|
|
|
|
|
|
|
jslint-ci: lint-js-ci
|
|
|
|
@echo "Please use lint-js-ci instead of jslint-ci"
|
2010-10-15 17:05:22 +00:00
|
|
|
|
2017-10-22 06:05:26 +00:00
|
|
|
LINT_CPP_ADDON_DOC_FILES = $(wildcard test/addons/??_*/*.cc test/addons/??_*/*.h)
|
2017-09-08 11:44:58 +00:00
|
|
|
LINT_CPP_EXCLUDE ?=
|
|
|
|
LINT_CPP_EXCLUDE += src/node_root_certs.h
|
2017-10-22 06:05:26 +00:00
|
|
|
LINT_CPP_EXCLUDE += $(LINT_CPP_ADDON_DOC_FILES)
|
2017-09-08 11:44:58 +00:00
|
|
|
LINT_CPP_EXCLUDE += $(wildcard test/addons-napi/??_*/*.cc test/addons-napi/??_*/*.h)
|
2017-07-26 08:27:18 +00:00
|
|
|
# These files were copied more or less verbatim from V8.
|
2017-09-08 11:44:58 +00:00
|
|
|
LINT_CPP_EXCLUDE += src/tracing/trace_event.h src/tracing/trace_event_common.h
|
2015-08-18 18:29:10 +00:00
|
|
|
|
2017-09-08 11:44:58 +00:00
|
|
|
LINT_CPP_FILES = $(filter-out $(LINT_CPP_EXCLUDE), $(wildcard \
|
2017-10-12 10:04:02 +00:00
|
|
|
benchmark/misc/function_call/binding.cc \
|
2015-08-18 18:29:10 +00:00
|
|
|
src/*.c \
|
|
|
|
src/*.cc \
|
|
|
|
src/*.h \
|
2017-07-26 08:27:18 +00:00
|
|
|
src/*/*.c \
|
|
|
|
src/*/*.cc \
|
|
|
|
src/*/*.h \
|
2015-08-18 18:29:10 +00:00
|
|
|
test/addons/*/*.cc \
|
|
|
|
test/addons/*/*.h \
|
2016-11-24 13:49:05 +00:00
|
|
|
test/cctest/*.cc \
|
|
|
|
test/cctest/*.h \
|
2017-03-20 21:55:26 +00:00
|
|
|
test/addons-napi/*/*.cc \
|
|
|
|
test/addons-napi/*/*.h \
|
2017-02-08 14:35:58 +00:00
|
|
|
test/gc/binding.cc \
|
2015-08-18 18:29:10 +00:00
|
|
|
tools/icu/*.cc \
|
|
|
|
tools/icu/*.h \
|
|
|
|
))
|
2013-07-31 10:54:06 +00:00
|
|
|
|
2017-10-22 06:05:26 +00:00
|
|
|
# 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-29 06:50:29 +00:00
|
|
|
lint-cpp: tools/.cpplintstamp
|
|
|
|
|
|
|
|
tools/.cpplintstamp: $(LINT_CPP_FILES)
|
2017-04-15 08:23:46 +00:00
|
|
|
@echo "Running C++ linter..."
|
2017-10-29 06:50:29 +00:00
|
|
|
@$(PYTHON) tools/cpplint.py $?
|
2016-04-07 18:56:05 +00:00
|
|
|
@$(PYTHON) tools/check-imports.py
|
2017-10-29 06:50:29 +00:00
|
|
|
@touch $@
|
2010-12-02 01:01:19 +00:00
|
|
|
|
2017-10-22 06:05:26 +00:00
|
|
|
lint-addon-docs: test/addons/.docbuildstamp
|
|
|
|
@echo "Running C++ linter on addon docs..."
|
|
|
|
@$(PYTHON) tools/cpplint.py --filter=$(ADDON_DOC_LINT_FLAGS) $(LINT_CPP_ADDON_DOC_FILES)
|
|
|
|
|
2017-09-08 11:44:58 +00:00
|
|
|
cpplint: lint-cpp
|
|
|
|
@echo "Please use lint-cpp instead of cpplint"
|
|
|
|
|
2017-09-16 23:43:54 +00:00
|
|
|
ifneq ("","$(wildcard tools/eslint/)")
|
2017-04-07 19:07:14 +00:00
|
|
|
lint:
|
2017-04-15 08:23:46 +00:00
|
|
|
@EXIT_STATUS=0 ; \
|
2017-09-08 11:44:58 +00:00
|
|
|
$(MAKE) lint-js || EXIT_STATUS=$$? ; \
|
|
|
|
$(MAKE) lint-cpp || EXIT_STATUS=$$? ; \
|
2017-04-30 19:07:38 +00:00
|
|
|
$(MAKE) lint-md || EXIT_STATUS=$$? ; \
|
2017-10-22 06:05:26 +00:00
|
|
|
$(MAKE) lint-addon-docs || EXIT_STATUS=$$? ; \
|
2017-04-07 19:07:14 +00:00
|
|
|
exit $$EXIT_STATUS
|
2016-07-08 23:22:46 +00:00
|
|
|
CONFLICT_RE=^>>>>>>> [0-9A-Fa-f]+|^<<<<<<< [A-Za-z]+
|
2017-10-22 06:05:26 +00:00
|
|
|
lint-ci: lint-js-ci lint-cpp lint-md lint-addon-docs
|
2016-07-08 23:22:46 +00: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-13 23:08:11 +00: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 00:35:46 +00:00
|
|
|
|
2016-03-27 06:12:47 +00:00
|
|
|
lint-ci: lint
|
2016-03-10 03:40:54 +00:00
|
|
|
endif
|
2016-03-27 06:12:47 +00:00
|
|
|
|
2017-10-29 06:50:29 +00:00
|
|
|
lint-clean:
|
|
|
|
$(RM) tools/.*lintstamp
|
|
|
|
$(RM) .eslintcache
|
|
|
|
|
2017-03-27 05:39:55 +00:00
|
|
|
.PHONY: $(TARBALL)-headers \
|
|
|
|
all \
|
|
|
|
bench \
|
|
|
|
bench \
|
|
|
|
bench-all \
|
|
|
|
bench-array \
|
|
|
|
bench-buffer \
|
|
|
|
bench-ci \
|
|
|
|
bench-fs \
|
|
|
|
bench-http \
|
|
|
|
bench-http-simple \
|
|
|
|
bench-idle \
|
|
|
|
bench-misc \
|
|
|
|
bench-net \
|
|
|
|
bench-tls \
|
|
|
|
binary \
|
|
|
|
blog \
|
|
|
|
blogclean \
|
|
|
|
build-addons \
|
|
|
|
build-addons-napi \
|
|
|
|
build-ci \
|
|
|
|
cctest \
|
|
|
|
check \
|
|
|
|
clean \
|
|
|
|
clear-stalled \
|
|
|
|
coverage \
|
|
|
|
coverage-build \
|
|
|
|
coverage-clean \
|
|
|
|
coverage-test \
|
|
|
|
dist \
|
|
|
|
distclean \
|
|
|
|
doc \
|
|
|
|
doc-only \
|
|
|
|
docclean \
|
|
|
|
docopen \
|
|
|
|
dynamiclib \
|
|
|
|
install \
|
|
|
|
install-bin \
|
|
|
|
install-includes \
|
|
|
|
lint \
|
2017-10-29 06:50:29 +00:00
|
|
|
lint-clean \
|
2017-03-27 05:39:55 +00:00
|
|
|
lint-ci \
|
2017-09-08 11:44:58 +00:00
|
|
|
lint-cpp \
|
|
|
|
lint-js \
|
|
|
|
lint-js-ci \
|
2017-11-24 02:50:19 +00:00
|
|
|
lint-js-fix \
|
2017-03-27 05:39:55 +00:00
|
|
|
list-gtests \
|
2017-04-30 19:07:38 +00:00
|
|
|
lint-md \
|
2017-05-26 08:01:27 +00:00
|
|
|
lint-md-build \
|
|
|
|
lint-md-clean \
|
2017-03-27 05:39:55 +00:00
|
|
|
pkg \
|
|
|
|
release-only \
|
|
|
|
run-ci \
|
|
|
|
staticlib \
|
|
|
|
tar \
|
|
|
|
test \
|
|
|
|
test-addons \
|
|
|
|
test-addons-clean \
|
|
|
|
test-addons-napi \
|
2017-05-15 04:58:21 +00:00
|
|
|
test-addons-napi-clean \
|
2017-03-27 05:39:55 +00:00
|
|
|
test-all \
|
|
|
|
test-ci \
|
|
|
|
test-ci-js \
|
|
|
|
test-ci-native \
|
2017-10-22 06:05:26 +00:00
|
|
|
test-doc \
|
2017-03-27 05:55:19 +00:00
|
|
|
test-gc \
|
|
|
|
test-gc-clean \
|
2017-06-02 07:09:49 +00:00
|
|
|
test-hash-seed \
|
2017-10-18 05:58:46 +00:00
|
|
|
test-only \
|
2017-03-27 05:39:55 +00:00
|
|
|
test-v8 \
|
|
|
|
test-v8-all \
|
|
|
|
test-v8-benchmarks \
|
|
|
|
test-v8-intl \
|
|
|
|
uninstall \
|
|
|
|
v8 \
|
|
|
|
website-upload
|