From 3cbfbfa8a119302220fa72695b5eb3648f84f613 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Thu, 27 Dec 2018 22:01:54 +0100 Subject: [PATCH] fix(ci): correctly disable cache on Travis CI Empty list doesn't work correctly, it still tries to cache --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index d84a7ae59..d9672e445 100644 --- a/.travis.yml +++ b/.travis.yml @@ -84,9 +84,8 @@ jobs: - stage: Build and Deploy <<: *DEFAULTS_GO - cache: - # disable cache so we always build from scratch - directories: [] + # disable cache so we always build from scratch + cache: false before_script: # this stage needs to build everything including assets file and that # requires running webpack, so we need nodejs here