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

Detection of 'GlobalApolloCodegen' happens too early in Gradle configuration #1203

Closed
tasomaniac opened this issue Feb 6, 2019 · 0 comments · Fixed by #1451
Closed

Detection of 'GlobalApolloCodegen' happens too early in Gradle configuration #1203

tasomaniac opened this issue Feb 6, 2019 · 0 comments · Fixed by #1451

Comments

@tasomaniac
Copy link
Contributor

When the following option is used systemProp.apollographql.useGlobalApolloCodegen=true, Apollo plugin spends some time to validate the installation of the global apollo codegen.

This validation happens on configuration time. Even-though everything is cached in a module, this happens every-time, anybody runs any Gradle task in the project.

This takes maybe around couple seconds but it also depends on the computer. Would be good to do this lazily.

tasomaniac added a commit to tasomaniac/apollo-android that referenced this issue Jul 22, 2019
…egen installation

Move Apollo global verification to the beginning of the task to speed up configuration process.

Before, this I/O operation (version check) would run in configuration time and take up to 5sec. This runs in every Gradle execution (even when unrelated to Apollo)

This commit fixes apollographql#1203 and moves verification to a later stage.

This means that we cannot easily fall-back to local installation that easily. That's why an exception is thrown with an appropriate message. User should disable using this feature if they don't have global installation.
sav007 pushed a commit that referenced this issue Jul 24, 2019
* Fix: Speed up build configuration time by lazily verifying apollo-codegen installation

Move Apollo global verification to the beginning of the task to speed up configuration process.

Before, this I/O operation (version check) would run in configuration time and take up to 5sec. This runs in every Gradle execution (even when unrelated to Apollo)

This commit fixes #1203 and moves verification to a later stage.

This means that we cannot easily fall-back to local installation that easily. That's why an exception is thrown with an appropriate message. User should disable using this feature if they don't have global installation.

* Replace println with info logs

* Move verification into exec. doFirst does not really run first
tasomaniac added a commit to tasomaniac/apollo-android that referenced this issue Jul 26, 2019
…egen installation

Move Apollo global verification to the beginning of the task to speed up configuration process.

Before, this I/O operation (version check) would run in configuration time and take up to 5sec. This runs in every Gradle execution (even when unrelated to Apollo)

This commit fixes apollographql#1203 and moves verification to a later stage.

This means that we cannot easily fall-back to local installation that easily. That's why an exception is thrown with an appropriate message. User should disable using this feature if they don't have global installation.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants