diff options
author | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2017-09-29 14:15:12 -0400 |
---|---|---|
committer | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2017-09-29 14:55:59 -0400 |
commit | ae3eead2b66ec5f9aa23db82c0c094118441765c (patch) | |
tree | 88a8a500fb7f6724c6f00d72c65442840a97c91a /circle.yml | |
parent | b296f54769cb7487013bab14ae281c082c3aac21 (diff) | |
download | qtlocation-mapboxgl-ae3eead2b66ec5f9aa23db82c0c094118441765c.tar.gz |
[build] Use the 'arch' cache template key
Diffstat (limited to 'circle.yml')
-rw-r--r-- | circle.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/circle.yml b/circle.yml index d80fd6efb1..69f5403d9c 100644 --- a/circle.yml +++ b/circle.yml @@ -42,11 +42,11 @@ step-library: - &restore-cache restore_cache: keys: - - 'v3/{{ .Environment.CIRCLE_JOB }}/{{ .Branch }}/{{ checksum ".circle-week" }}' - - 'v3/{{ .Environment.CIRCLE_JOB }}/master/{{ checksum ".circle-week" }}' + - 'v3/{{ .Environment.CIRCLE_JOB }}/{{ arch }}/{{ .Branch }}/{{ checksum ".circle-week" }}' + - 'v3/{{ .Environment.CIRCLE_JOB }}/{{ arch }}/master/{{ checksum ".circle-week" }}' - &save-cache save_cache: - key: 'v3/{{ .Environment.CIRCLE_JOB }}/{{ .Branch }}/{{ checksum ".circle-week" }}' + key: 'v3/{{ .Environment.CIRCLE_JOB }}/{{ arch }}/{{ .Branch }}/{{ checksum ".circle-week" }}' paths: [ "node_modules", "/root/.ccache", "mason_packages/.binaries" ] |