From 9856c8500c3496c3d1584ff2ee1e603fea4d17c0 Mon Sep 17 00:00:00 2001 From: lorenzo Date: Mon, 17 Jul 2017 20:19:40 +0300 Subject: [PATCH 1/2] longer timeout for circleci to run build.sh --- .circleci/config.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5f9e1a11fb2..47bd82e9438 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -41,14 +41,15 @@ jobs: - run: npm test - run: reaction test - - save_cache: name: Saving Meteor dev_bundle to cache key: dev_bundle paths: - /home/reaction/.meteor/local - - run: .circleci/build.sh + - run: + command: .circleci/build.sh + no_output_timeout: 1800 # deploy the build (if on a deployment branch) - deploy: From 114f85a45225ad031a27b9fb297dc8e8c608451f Mon Sep 17 00:00:00 2001 From: Jeremy Shimko Date: Mon, 17 Jul 2017 14:06:13 -0400 Subject: [PATCH 2/2] update no_output_timeout with unit of time --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 47bd82e9438..99a022451d9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -49,7 +49,7 @@ jobs: - run: command: .circleci/build.sh - no_output_timeout: 1800 + no_output_timeout: 30m # deploy the build (if on a deployment branch) - deploy: