aboutsummaryrefslogtreecommitdiff
path: root/build-scripts/post-build-lava.py
diff options
context:
space:
mode:
Diffstat (limited to 'build-scripts/post-build-lava.py')
-rwxr-xr-xbuild-scripts/post-build-lava.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/build-scripts/post-build-lava.py b/build-scripts/post-build-lava.py
index 8842734..6dd335f 100755
--- a/build-scripts/post-build-lava.py
+++ b/build-scripts/post-build-lava.py
@@ -706,10 +706,12 @@ def submit_job_from_url():
boot_subst = "%s%s%s" % (download_url, "/boot.", file_extension)
system_subst = "%s%s%s" % (download_url, "/system.", file_extension)
userdata_subst = "%s%s%s" % (download_url, "/userdata.", file_extension)
+ cache_subst = "%s%s%s" % (download_url, "/cache.", file_extension)
replace("job.json", "%%ANDROID_BOOT%%", boot_subst)
replace("job.json", "%%ANDROID_SYSTEM%%", system_subst)
replace("job.json", "%%ANDROID_DATA%%", userdata_subst)
+ replace("job.json", "%%ANDROID_CACHE%%", userdata_subst)
replace("job.json", "%%ANDROID_META_NAME%%", job_name)
replace("job.json", "%%JOB_NAME%%", job_name)
replace("job.json", "%%ANDROID_META_BUILD%%", build_number)