Re: Start-up speed overhead of `dub run dscanner`

2025-01-27 Thread Mathias Lang via Digitalmars-d-learn
On Monday, 27 January 2025 at 17:04:39 UTC, Anonymouse wrote: Simplified: ``` $ time ( for f in source/**/*.d; do dub run dscanner --nodeps --vquiet -- -S --skipTests $f; done ) 7,87s user 3,33s system 99% cpu 11,304 total $ time ( for f in source/**/*.d; do /usr/bin/dscanner -S --skipTests

Start-up speed overhead of `dub run dscanner`

2025-01-27 Thread Anonymouse via Digitalmars-d-learn
I want to call dscanner 73 times in succession, because I can't pass it a source directory to recursively scan without it failing an assert parsing one of the files. ([dscanner #931](https://github.com/dlang-community/D-Scanner/issues/931)) I want to do it in a CI build/test script, so I thoug