From 9512f3938a1addda9545842d75b56ff9fa9694ec Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Thu, 21 Mar 2019 20:35:05 -0400 Subject: [PATCH] build: temporarily don't run tests on Travis MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We're hitting the Travis job timeout of 50mins if built with a new compiler (as there is no ccache). Temporarily disable the running of tests so the Travis job can complete within the timeout and populate the ccache. PR-URL: https://github.com/nodejs/node/pull/26720 Reviewed-By: Anna Henningsen Reviewed-By: Luigi Pinca Reviewed-By: Michaƫl Zasso Reviewed-By: Refael Ackermann --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2569b44ec39e83..d56eab59e2f05c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,4 +31,4 @@ matrix: - ./configure - make -j2 V= script: - - PARALLEL_ARGS='--flaky-tests=skip' make -j1 test + - # PARALLEL_ARGS='--flaky-tests=skip' make -j1 test