Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Need for build speed! #289

Merged
merged 9 commits into from
Jun 20, 2017
Merged

Need for build speed! #289

merged 9 commits into from
Jun 20, 2017

Conversation

SUPERCILEX
Copy link
Contributor

@SUPERCILEX SUPERCILEX commented Jun 19, 2017

@samtstern at a high level overview, this PR does a few things:

  • Updates the Android Gradle Plugin to 3.0 so we can take advantage of the improvements in multi-module project build speeds
  • Similarly, update Gradle to 4.0
  • Enable the new Gradle build cache which ensures only the modules that changed are rebuilt
  • Require sudo for Travis which brings massive internet speed boosts
  • Require a soul-crushing amount of memory to build the full multi-module project. (Which I'm hoping won't be an issue)

fixes #288

build.sh Outdated
else
# On a pull request, just build debug which is much faster and catches
# obvious errors.
GRADLE_OPTS=$OPTS ./gradlew clean :app:assembleDebug
./gradlew clean assembleDebug
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The other important thing we do that I forgot to mention explicitly is that all modules are built in single Travis build. Since they don't depend on each other, we can build them in parallel without taking a performance hit which is faster than booting up a bunch of Travis VMs and redownloading stuff.

main {
// TODO(developer): Replace this with your app code
// See: https://firebase.google.com/docs/dynamic-links/android
resValue "string", "app_code", "YOUR_APP_CODE"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TODO(me): This is only used in a test, figure out why.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to keep this. These samples are actually cloned and built by another team at Google and used for end-to-end Firebase testing and they requested we use this app_code in gradle config to make their lives easier.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah crud, that's makes life harder because we need to add a dimension. Let's see if I can get it to work! 😄

@SUPERCILEX
Copy link
Contributor Author

@samtstern Aw man, there's a bug when building stuff in parallel so we're up to ~6m build time now. 😢


// [START gradle_play_config]
compile 'com.google.firebase:firebase-ads:11.0.1'
implementation 'com.google.firebase:firebase-ads:11.0.1'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm fine to move to the 3.0 plugin but could we move these back to compile throughout? Many developers using this project as a reference are not on the 3.0 tools yet and implementation will not work for them if they copy and paste (which everyone does).

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

K, sounds reasonable. Do you want that for each module or just the admob one?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need it for all modules

@samtstern
Copy link
Contributor

@SUPERCILEX wow thank you for doing all this! That's some serious speed. Left one comment.

@SUPERCILEX
Copy link
Contributor Author

SUPERCILEX commented Jun 20, 2017

@samtstern Bringing along the improvements from FirebaseUI, I also added compiling tests to the check task because I didn't noticed that I broke the tests by removing that Gradle string until I tried running them.

Speaking of tests, everything compiles locally and all the tests pass except for an auth one. I'm pretty that's not my fault, but could you try running ./gradlew connectedCheck with your local HEAD? (Not this PR) Thanks!

@samtstern
Copy link
Contributor

@SUPERCILEX I am pretty sure some of the tests are broken, you're right. So let's leave them out of this PR for the sake of greenness!

@SUPERCILEX
Copy link
Contributor Author

@samtstern K, SGTM.

@SUPERCILEX
Copy link
Contributor Author

@samtstern I took one last look at everything and I believe #289 (comment) is the only thing left to resolve.

@SUPERCILEX
Copy link
Contributor Author

Oh, just saw your comment. I'm on it.

@SUPERCILEX
Copy link
Contributor Author

@samtstern Cool beans, I think I reverted everything correctly! (I need to file a bug with Tor to provide some sort of Android Studio quick-fix to update the compile notation 😄)

@samtstern
Copy link
Contributor

The final build: "Ran for 6 min 50 sec"

@SUPERCILEX you're a legend, thank you!

@samtstern samtstern merged commit 88146c0 into firebase:master Jun 20, 2017
@SUPERCILEX SUPERCILEX deleted the need-for-speed branch June 20, 2017 14:59
@SUPERCILEX
Copy link
Contributor Author

Haha, thanks! 😀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Speed up Travis CI build
2 participants