Windows makefile generator: Don't delete long lists of files in one go#11171
Windows makefile generator: Don't delete long lists of files in one go#11171openssl-machine merged 1 commit intoopenssl:masterfrom
Conversation
|
Currently in WIP because I haven't tested it yet. Shouldn't we have an Appveyor job trying |
|
Couldn't we try to use wildcard deletes as much as possible? Deleting every single file separately is so painfully slooow on windows... |
|
No. We do too much of that already. People who build in the source tree run too much risk of losing their work. We have already had that issue |
|
I have also tried to solve that long line issue: #10895 |
|
This issue is in a state where it requires action by @openssl/committers but the last update was 30 days ago |
|
@iamamoose Hmm, maybe reminding for PRs that still have a [WIP] tag is overzealous... |
|
I wonder why my #10895 is being ignored, that is not WIP, |
It could certainly ignore things with WIP in the title, but would be better if the labels held the state, perhaps a WIP label? |
|
The labels are not visible in the notification area, but the WIP prefix is. |
|
And non-members can set the title, but they cannot set labels. |
|
There's no reason for it to be WIP any more (hasn't been for a while) |
|
24 hours has passed since 'approval: done' was set, but this PR has failing CI tests. Once the tests pass it will get moved to 'approval: ready to merge' automatically, alternatively please review and set the label manually. |
The Windows command line has its limits, and we're hitting it hard. We therefore generate one 'del' command for each explicit file for the 'clean' target. Fixes openssl#11163 Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from openssl#11171)
|
Have you also fixed the nmake distclean ? |
|
And, why is everyone force-pushing after the approval ?
to get the version as it was approved. |
|
Its normally because a rebase is needed. |
|
Yes, but then the rebase should be done, and a new approval requested. |
Everyone? I think that I've only seen me and @DDvO do this so far. Basically, it allows github to notice and to make that "Merged" status and notification for us. |
|
I already asked @DDvO to stop doing that. Now I ask you. |
|
It made me happy too, FYI. Also, it does make it clearer what PRs are closed because they were abandoned, which does happen for various reasons. |
|
Okay, I made my point, just do what you want then. |
|
When I merge a PR I always close with a comment that I merged it. |
I also do this to make clear that I did not close the PR for other reasons.
Well, the PR appears in the history of the master branch due to the |
The Windows command line has its limits, and we're hitting it hard.
We therefore generate one 'del' command for each explicit file for the
'clean' target.
Fixes #11163