From 1d233d580128b7a381a71e535e096958d19c784a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Bergstr=C3=B6m?= Date: Sun, 27 Mar 2016 17:12:47 +1100 Subject: [PATCH 1/2] build: introduce ci targets for lint/benchmark Introduce two new targets we will populate with actions once merged into all branches we need to support through CI. --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c417f1ae886dda..02e4050c8166dc 100644 --- a/Makefile +++ b/Makefile @@ -584,6 +584,8 @@ bench-all: bench bench-misc bench-array bench-buffer bench-url bench-events benc bench: bench-net bench-http bench-fs bench-tls +bench-ci: bench + bench-http-simple: benchmark/http_simple_bench.sh @@ -630,10 +632,12 @@ lint: "$ git clone https://github.com/nodejs/node.git" endif +lint-ci: lint + .PHONY: lint cpplint jslint bench clean docopen docclean doc dist distclean \ check uninstall install install-includes install-bin all staticlib \ dynamiclib test test-all test-addons build-addons website-upload pkg \ blog blogclean tar binary release-only bench-http-simple bench-idle \ bench-all bench bench-misc bench-array bench-buffer bench-net \ bench-http bench-fs bench-tls cctest run-ci test-v8 test-v8-intl \ - test-v8-benchmarks test-v8-all v8 + test-v8-benchmarks test-v8-all v8 lint-ci From ddfc9c8d189d3e94046dbbb0d725277eba6dd17e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Bergstr=C3=B6m?= Date: Thu, 31 Mar 2016 17:06:59 +1100 Subject: [PATCH 2/2] fix: add bench-ci to .phony --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 02e4050c8166dc..5c493747931d4f 100644 --- a/Makefile +++ b/Makefile @@ -640,4 +640,4 @@ lint-ci: lint blog blogclean tar binary release-only bench-http-simple bench-idle \ bench-all bench bench-misc bench-array bench-buffer bench-net \ bench-http bench-fs bench-tls cctest run-ci test-v8 test-v8-intl \ - test-v8-benchmarks test-v8-all v8 lint-ci + test-v8-benchmarks test-v8-all v8 lint-ci bench-ci