summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2018-06-22 01:56:13 -0400
committerTimothy Gu <timothygu99@gmail.com>2018-06-25 21:56:05 -0400
commitcd8adfaf98613fb0ae4ba71018a236906f67f286 (patch)
treebc5a757728700fd83bd15612e9ba31bf82a2ba49 /.travis.yml
parentba4f5e9bb9a2b80f3760b44b7962a77adda50afd (diff)
downloadandroid-node-v8-cd8adfaf98613fb0ae4ba71018a236906f67f286.tar.gz
android-node-v8-cd8adfaf98613fb0ae4ba71018a236906f67f286.tar.bz2
android-node-v8-cd8adfaf98613fb0ae4ba71018a236906f67f286.zip
build: improve Travis CI settings
Remove macOS-specific steps, and reduce warnings due to compilation with clang. PR-URL: https://github.com/nodejs/node/pull/21459 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
1 files changed, 1 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 6415497163..11cb2a2f12 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -18,9 +18,6 @@ matrix:
script:
- make -j2 test-ci
before_install:
- - export HOMEBREW_NO_AUTO_UPDATE=1 # work around https://github.com/travis-ci/travis-ci/issues/7456
- - if [ $TRAVIS_OS_NAME = osx ]; then brew install ccache; fi
- - export PATH="/usr/local/opt/ccache/libexec:$PATH"
- export CXX="ccache clang++ -Qunused-arguments"
- - export CC="ccache clang -Qunused-arguments"
+ - export CC="ccache clang -Qunused-arguments -Wno-unknown-warning-option"
- export JOBS=2