-
Notifications
You must be signed in to change notification settings - Fork 4
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
Change the phase of reconfiguring the compilation tasks #10
Comments
…nfirming that incremental compilation works as expected
The reconfiguration has been changed. Regarding incremental compilation: there is no difference between reconfiguring the |
Changed to what? As far as I can see from the commit, you still configure the task during execution phase, not configuration phase. I also never said it will influence incremental compilation, but incremental task execution, the UP-TO-DATE checks that determine whether a task needs to be executed at all or not. Also this does not only affect incremental execution but also using the build cache. There might be other stuff affected as configuration of a task should never be changed during execution phase, but only during configuration phase. |
I've reopened the issue - I checked once more and indeed, the whole orchestrator is called in |
If you call |
Follow up: #9
Compile task reconfiguration is done in
doFirst
phase (during execution). They change the configuration which affects incremental compilation. Moving it to the configuration phase should solve this issue.The text was updated successfully, but these errors were encountered: