How do you cache sdkmanager in AzureDevops?
问题 I do the following in my pipeline - bash: | $ANDROID_SDK_ROOT/tools/bin/sdkmanager 'ndk;20.0.5594570' >/dev/null $ANDROID_SDK_ROOT/tools/bin/sdkmanager 'ndk;21.0.6113669' >/dev/null displayName: "install NDK" Which takes about 3 minutes I was wondering if I can cache this to speed things up. However, I am not sure where it puts the files. 回答1: It seems you want to cache ndk. You may check Pipeline caching: https://docs.microsoft.com/en-us/azure/devops/pipelines/release/caching?view=azure