I'm using the CircleCI CLI to test running my unit tests locally. Every time I run I get:
FAILURE: Build failed with an exception.
* What went wrong:
A problem occurred configuring project ':appName'.
> The SDK directory '/Users/me/workspace/android-sdk-macosx' does not exist.
If I add in a command to run echo $ANDROID_HOME
it correctly points to /opt/android/sdk
I can't figure out why it's getting my local $ANDROID_HOME
value and not what's configured in the container.
What am I missing?