From 2537707cb39a8400f56452a08e367ee7ade5bbe2 Mon Sep 17 00:00:00 2001 From: Ben Newman Date: Tue, 7 Feb 2017 20:25:30 -0500 Subject: [PATCH] Disable optimistic caching for `meteor --get-ready` on Circle CI. We (@abernix and I) suspect the intermittent "died unexpectedly" failures of `meteor --get-ready` on Circle CI are due to hitting their (low) limit on the maximum number of open files. Although optimistic caching speeds up rebuilds considerably, it doesn't do much for initial builds, and it definitely keeps more files open. Disabling it here seems worth a try. --- circle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index 393d52c371..e1f034758c 100644 --- a/circle.yml +++ b/circle.yml @@ -12,7 +12,7 @@ dependencies: - ".babel-cache" override: # shouldn't take longer than 10 minutes - - METEOR_PRETTY_OUTPUT=0 ./meteor --get-ready: + - METEOR_PRETTY_OUTPUT=0 METEOR_DISABLE_OPTIMISTIC_CACHING=1 ./meteor --get-ready: timeout: 600 test: