You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, many operations in this project work inside directory within data. If they fail, make doesn't delete them (AFAIK it only does that with files), so a broken artefact is left behind. Because the subsequent operation doesn't (or can't even) check the directory's integrity, the whole pipeline produces subtly broken artefacts.
One possible solution is to make all operations atomic, by letting each
create a temp dir
work within this tmp dir, e.g. produce the artefact
mv the temp dir to the desired location.
Another option would be to get make to delete directories on failures.
The text was updated successfully, but these errors were encountered:
Currently, many operations in this project work inside directory within
data
. If they fail,make
doesn't delete them (AFAIK it only does that with files), so a broken artefact is left behind. Because the subsequent operation doesn't (or can't even) check the directory's integrity, the whole pipeline produces subtly broken artefacts.One possible solution is to make all operations atomic, by letting each
Another option would be to get
make
to delete directories on failures.The text was updated successfully, but these errors were encountered: