Hi there. We are having on our CI jobs with Jenkin...
# android
d
Hi there. We are having on our CI jobs with Jenkins pipelines the following flow: - Lint APP (compiles a version of the app) - Detekt APP (static analysis) - Unit Test APP (compiles a version of the app) - FIREBASE Ui tests on the APP (compiles a version of the app on different dynamically created agent on aws) - Archive PreProd APP (compiles a version of the app) All this is taking considerable time since the app is compiled several times. Also it's not simple to share the cache among the agents. Question, is there any good practice on how to use the same compiled version to lint, unit test, ui test a flavor of your app? Kind regards!