appveyor: replace PowerShell with bash + parallel autotools#12572
Closed
vszakats wants to merge 4 commits intocurl:masterfrom
Closed
appveyor: replace PowerShell with bash + parallel autotools#12572vszakats wants to merge 4 commits intocurl:masterfrom
vszakats wants to merge 4 commits intocurl:masterfrom
Conversation
jay
reviewed
Dec 21, 2023
vszakats
added a commit
to vszakats/curl
that referenced
this pull request
Dec 22, 2023
Follow-up to 2d4d0c1 curl#12572 Closes #xxxxx
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PowerShell works (after a steep development curve), but one property of
it stuck and kept causing unresolvable usability issues: With
$ErrorActionPreference=Stop, it does abort on failures, but shows onlythe first line of the error message. In
Continuemode, it shows thefull error message, but doesn't stop on all errors. Another issue is
PowerShell considering any stderr output as if the command failed (this
has been improved in 7.2 (2021-Nov), but fixed versions aren't running
in CI and will not be for a long time in all test images.)
Thus, we're going with bash.
Also:
-j2with autotools tests, making them finish 5-15 minutes perjob faster.
POSIX_PATH_PREFIX.WINDIR.Follow-up to 75078a4 #11999
Ref: #12444
Fixes #12560
Closes #12572