-
Notifications
You must be signed in to change notification settings - Fork 26
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
Incremental draft #174
base: main
Are you sure you want to change the base?
Incremental draft #174
Conversation
TaskOutput output = makeOutput(successfulResult.taskDir); | ||
this.lastSuccessfulTaskDir.put(input, successfulResult.taskDir); | ||
this.knownOutputs.put(successfulResult.taskDir, output); | ||
if (input.getOutputType().equals(OutputTypes.TRANSPILED_JS)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I hard coded this here, as a hack. imho the writeFilesDat should be in it's own leaf task, only called once all other tasks are done.
172441f
to
ed82ac9
Compare
…afe. -files.dat now preserves the last task directory output too. This is necessary for incremental no restart. -files.dat write no longer requires a BuildMap. -removed BuildService argument from Input consructor. (cherry picked from commit ecf85bc)
ed82ac9
to
96e9762
Compare
Added hash-based processing of changed files to avoid reprocessing of unchanged files. Hash is computed from the file's I also moved |
TODO: add details