Ken Yee
Ken Yee
I'd still recommend targeting the latest. Not sure why mockito is failing in CI though 🤔
Ever get a chance to try -XnoInline? Source code seems to show it's not in yet...
@yuxia761 did that work?
This is still a bug and I can't add the label to tag it as such 😔
same version and same issue I think...CSV file has rows w/ varying #columns: ``` scenario,asSync,asSync,asSync,cleanBuild,abiChange version,Gradle 7.4.2,Gradle 7.4.2,Gradle 7.4.2,Gradle 7.4.2,Gradle 7.4.2 tasks,AS sync,AS sync,AS sync,:app:tfa:assembleDefaultDebug,:app:tfa:assembleDefaultDebug value,total execution time,Gradle total execution...
Tried setting the same warm-ups and iterations and something still seems broken. Snippet of gradle scenario file: ``` asSync { android-studio-sync { studio-jvm-args = ["-Xms4g", "-Xmx16g"] warm-ups = 2 iterations...
this fixes the CSV file: ``` asSync { android-studio-sync { studio-jvm-args = ["-Xms4g", "-Xmx16g"] } warm-ups = 1 iterations = 1 } ``` i.e., the #warmups/iterations has to go outside...
ok...setting warmups to 2 and iterations to 3 for all scenarios gives more reasonable results. Looks like AS sync always takes up 5 columns when it should only take up...