build: introduce ci targets for lint/benchmark
authorJohan Bergström <bugs@bergstroem.nu>
Sun, 27 Mar 2016 06:12:47 +0000 (17:12 +1100)
committerMyles Borins <mborins@us.ibm.com>
Mon, 11 Apr 2016 15:40:49 +0000 (11:40 -0400)
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 <mscdex@mscdex.net>
Reviewed-By: Myles Borins <myles.borins@gmail.com>
Reviewed-By: João Reis <reis@janeasystems.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Makefile

index ff0098b..7e311cc 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -508,6 +508,8 @@ bench-all: bench bench-misc bench-array bench-buffer bench-url bench-events
 
 bench: bench-net bench-http bench-fs bench-tls
 
+bench-ci: bench
+
 bench-http-simple:
        benchmark/http_simple_bench.sh
 
@@ -547,9 +549,11 @@ 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
+       bench-http bench-fs bench-tls cctest run-ci lint-ci bench-ci