diff options
author | Bruno Barbieri <bruno.barbieri@consensys.net> | 2018-07-07 03:50:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-07 03:50:57 +0800 |
commit | 5b58c2acb47ce7fa9631836ac71539e8109ad619 (patch) | |
tree | 69b6e1bb841e95925dda4334774c44f64f1ac5f6 /.circleci | |
parent | 24b0e6a4f82a81569bba84af7f0a96a1d5eb1405 (diff) | |
download | tangerine-wallet-browser-5b58c2acb47ce7fa9631836ac71539e8109ad619.tar tangerine-wallet-browser-5b58c2acb47ce7fa9631836ac71539e8109ad619.tar.gz tangerine-wallet-browser-5b58c2acb47ce7fa9631836ac71539e8109ad619.tar.bz2 tangerine-wallet-browser-5b58c2acb47ce7fa9631836ac71539e8109ad619.tar.lz tangerine-wallet-browser-5b58c2acb47ce7fa9631836ac71539e8109ad619.tar.xz tangerine-wallet-browser-5b58c2acb47ce7fa9631836ac71539e8109ad619.tar.zst tangerine-wallet-browser-5b58c2acb47ce7fa9631836ac71539e8109ad619.zip |
Update config.yml to allow firefox download caching
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 69d407d2b..cfc657a22 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -119,11 +119,13 @@ jobs: - image: circleci/node:8.11.3-browsers steps: - checkout + - restore_cache: + keys: dependency-cache-firefox - run: - name: Download Firefox + name: Download Firefox If needed command: ./.circleci/scripts/firefox-download.sh - save_cache: - key: dependency-cache-firefox-{{ .Revision }} + key: dependency-cache-firefox paths: - firefox @@ -224,7 +226,7 @@ jobs: steps: - checkout - restore_cache: - key: dependency-cache-firefox-{{ .Revision }} + key: dependency-cache-firefox - run: name: Install firefox command: ./.circleci/scripts/firefox-install.sh @@ -261,7 +263,7 @@ jobs: steps: - checkout - restore_cache: - key: dependency-cache-firefox-{{ .Revision }} + key: dependency-cache-firefox - run: name: Install firefox command: ./.circleci/scripts/firefox-install.sh @@ -362,7 +364,7 @@ jobs: steps: - checkout - restore_cache: - key: dependency-cache-firefox-{{ .Revision }} + key: dependency-cache-firefox - run: name: Install firefox command: ./.circleci/scripts/firefox-install.sh @@ -405,7 +407,7 @@ jobs: steps: - checkout - restore_cache: - key: dependency-cache-firefox-{{ .Revision }} + key: dependency-cache-firefox - run: name: Install firefox command: ./.circleci/scripts/firefox-install.sh |