File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -44,15 +44,15 @@ aliases:
4444
4545 - &restore-cache-apt
4646 keys :
47- - v1-apt-{{ arch }}-{{ .Branch }}-{{ checksum "scripts/circleci/apt-get-android-deps.sh" }}
48- # Fallback in case checksum fails
49- - v1-apt-{{ arch }}-{{ .Branch }}-
47+ - v1-apt-{{ .Branch }}-{{ checksum "scripts/circleci/apt-get-android-deps.sh" }}
5048 # Fallback in case this is a first-time run on a fork
51- - v1-apt-{{ arch }}-master-
49+ # You always want to match checksum, if it fails,
50+ # proceed with a fresh install.
51+ - v1-apt-master-{{ checksum "scripts/circleci/apt-get-android-deps.sh" }}
5252 - &save-cache-apt
5353 paths :
5454 - ~/vendor/apt
55- key : v1-apt-{{ arch }}-{{ .Branch }}-{{ checksum "scripts/circleci/apt-get-android-deps.sh" }}
55+ key : v1-apt-{{ .Branch }}-{{ checksum "scripts/circleci/apt-get-android-deps.sh" }}
5656
5757 - &restore-cache-ndk
5858 keys :
Original file line number Diff line number Diff line change 2222
2323# Install all packages in the cache
2424echo " Installing build dependencies..."
25- sudo dpkg -i ~ /vendor/apt/archives/* .deb
25+ sudo dpkg -i ~ /vendor/apt/archives/* .deb
You can’t perform that action at this time.
0 commit comments