Hello :wave: Any suggestions on how to setup a tes...
# gradle
d
Hello 👋 Any suggestions on how to setup a test android project that can be run using Gradle TestKit on Github Actions? I got a Gradle plugin that I'd like to test against android but it requires
ANDROID_SDK_ROOT
(or
sdk.dir
to provided) so while I can get it to work locally any suggestions on how to make it a self contained build on GH actions?
Requiring android sdk to run a test project locally seems somewhat heavy -> any simpler alternatives?
m
I think Github Actions VM have the Android SDK pre-installed?
d
Cool
Guess I could parameterize the android test so it only runs when sdk is set
m
I think you can run it all the time. At least Ubuntu/Windows VM have
ANDROID_SDK_ROOT
d
I was thinking more about local development
m
Ah yea 👍
d
👍 will try it out