From abc37aab5eb571932f80d755a30832b8e30187db Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Wed, 20 Sep 2017 14:10:27 -0500 Subject: [PATCH] [build] move bundle zip to `$(AndroidToolchainCacheDirectory)` Previously the bundle was being downloaded to `bin/BuildDebug`, which would be commonly cleaned for each build on CI systems. We can speed up our builds by downloading the file to `~/android-archives`, which is already used for various other downloads. This will persist the file between builds on the same build agent. --- build-tools/xa-prep-tasks/xa-prep-tasks.targets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-tools/xa-prep-tasks/xa-prep-tasks.targets b/build-tools/xa-prep-tasks/xa-prep-tasks.targets index 120e1d1bca8..125c9b411ed 100644 --- a/build-tools/xa-prep-tasks/xa-prep-tasks.targets +++ b/build-tools/xa-prep-tasks/xa-prep-tasks.targets @@ -62,7 +62,7 @@ - <_BundlePath>$(OutputPath)$(XABundleFileName) + <_BundlePath>$(AndroidToolchainCacheDirectory)\$(XABundleFileName)