From 3f75751c2ef8ff85970ecdb28f2e0272dddcb5b3 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] build: introduce ci targets for lint/benchmark MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Introduce two new targets we will populate with actions once merged into all branches we need to support through CI. PR-URL: https://github.com/nodejs/node/pull/5921 Reviewed-By: Brian White Reviewed-By: Myles Borins Reviewed-By: João Reis Reviewed-By: James M Snell --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 93aedc8c2722f1..b4edaee1bf29ba 100644 --- a/Makefile +++ b/Makefile @@ -581,6 +581,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 @@ -620,10 +622,12 @@ cpplint: lint: jslint cpplint +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 bench-ci