Detect and report bindep parse errors in assemble script#799
Draft
Shrews wants to merge 1 commit intoansible:develfrom
Draft
Detect and report bindep parse errors in assemble script#799Shrews wants to merge 1 commit intoansible:develfrom
Shrews wants to merge 1 commit intoansible:develfrom
Conversation
Contributor
Author
|
Should probably add a porting guide for a new 3.3 release since this is a change in behavior. |
Add exit code 2 detection for all bindep invocations in the assemble script. When bindep exits with code 2 (unparsable content), the script now outputs an error message and exits with code 2, providing clear feedback about invalid bindep.txt syntax. Exit codes 0 (success) and 1 (dependencies not satisfied) continue to be handled normally and do not cause build failures. Includes integration test with invalid bindep.txt to verify the error detection and reporting behavior. Adds a porting guide for a newer release.
2f6cb18 to
47c92b2
Compare
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.
Add exit code 2 detection for all bindep invocations in the assemble script. When bindep exits with code 2 (unparsable content), the script now outputs an error message and exits with code 2, providing clear feedback about invalid bindep.txt syntax.
Exit codes 0 (success) and 1 (dependencies not satisfied) continue to be handled normally and do not cause build failures.
Includes integration test with invalid bindep.txt to verify the error detection and reporting behavior.
Fixes: #798