Letâs try and figure out what step that goes wrong. You run four different commands in the same execution:
clean resolve build bundle
I suggest that you start by running these one by one and in sequence. Iâd like to know if it is build or bundle which freezes. Please also add --verbose to your command so we see more info about what bob is doing.
Note that this is a warning and not an error. You can read more about the reasoning here:
Yes, if it is indeed freezing as it attempts to delete the folder then it is something we need to look into. And this was when running build or bundle in isolation?
Does it stall before or after the printout of âFailed to clean up temp directoryâ ?
If it stalls after, then itâs already failed to delete the directory and shouldnât take any more time. (Also, I donât think that the Fileutils.deleteDirectory() should take any amount of time, especially 4 minutes. I suspect something else is at play here.)
If it stalls before the printout, then itâs likely something else.
Do you have native extensions in your project?
One guess would be itâs building a custom engine on the remote server.
Although, the first build would cache the result, so building a second time would use the local cache (unless the source changed and it required a rebuild).
If you want, please share with us a minimal repro case we can test out with.
Thanks. I make more experiments.
And found problem. It is not âfailed to clean up temp directoryâ
Bob frezze because building engine.
I can see at js-web platform.
1)build get 100%
2)frezze.
3)After frezze in logs i see.
09, 2021 10:17:38 AM com.dynamo.bob.bundle.HTML5Bundler bundleApplication
INFO: Using extender binary for Asm.js
â¨ââ¨ââ¤Đ. 09, 2021 10:17:38 AM com.dynamo.bob.bundle.HTML5Bundler bundleApplication
INFO: Using extender binary for WASM
101% 100%
Warning: Failed to clean up temp directory 'C:\Users\d954m\AppData\Local\Temp\15992879743605491650'
If i use same bob command it not frezzed on next build.