summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorRichard Lau <riclau@uk.ibm.com>2019-04-02 18:25:28 -0400
committerRichard Lau <riclau@uk.ibm.com>2019-04-04 21:27:54 -0400
commitaf03de48d89175a9ef712228786a83968ff788df (patch)
tree0a2cfb2831b4b9332b9e61af4342b9d730413f48 /.travis.yml
parent2f1ed5c0637a7bdd079136d2cb80f6a4184ae299 (diff)
downloadandroid-node-v8-af03de48d89175a9ef712228786a83968ff788df.tar.gz
android-node-v8-af03de48d89175a9ef712228786a83968ff788df.tar.bz2
android-node-v8-af03de48d89175a9ef712228786a83968ff788df.zip
build: don't use lint-ci on Travis
The `lint-ci` Makefile target differs from `lint` in that it writes to a tap file and not stdout and also stops execution when an error is found (e.g. if JavaScript linting fails the C++ and docs linting are not run). The switch to `lint-ci` was to enable Python linting. Revert to `lint` and add the `lint-py` target. PR-URL: https://github.com/nodejs/node/pull/27062 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 8605832f21..5ca5740a0c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -18,7 +18,7 @@ jobs:
install:
- make lint-py-build || true
script:
- - NODE=$(which node) make lint-ci
+ - NODE=$(which node) make lint lint-py
- name: "Compile V8"
language: cpp