-
-
Notifications
You must be signed in to change notification settings - Fork 636
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add UI to engine execution #6647
Merged
Merged
Changes from all commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
8da78d7
initial
wisechengyi b287219
initial
wisechengyi f22b2a3
single worker works
wisechengyi 605b788
basic works
wisechengyi cb99460
fmt
wisechengyi 9a8d71b
comments
wisechengyi 9c288cf
fmt
wisechengyi df8849a
cmt
wisechengyi 60700e8
cmt
wisechengyi c2b7e2a
noop instead of panic for non-tty
wisechengyi 2fcfd7d
option plumbing
wisechengyi a65e348
optional compiles
wisechengyi c67490a
fmt
wisechengyi 298d821
plumb render option
wisechengyi 956464f
fmt
wisechengyi 8ac61be
plubm through run_console_rules codepath
wisechengyi bff4738
doc
wisechengyi 3f3caf1
Merge branch 'master' into 6571
wisechengyi fb09b8a
fix tests
wisechengyi 3ec95d2
correct doc
wisechengyi 75a7474
clippy if let
wisechengyi 2a3a45f
clippy if let
wisechengyi 07d4eb5
clippy
wisechengyi 32547fb
Merge branch '6571' of https://github.com/wisechengyi/pants into 6571
wisechengyi df64776
fmt
wisechengyi 61a3a76
address comments on option
wisechengyi d9be623
--amend
wisechengyi 96c39bc
plumb down worker count
wisechengyi 0c95fd9
fmt
wisechengyi a89dabc
link improvement ticket
wisechengyi ed7d4d0
Merge branch 'master' into 6571
wisechengyi 1b77e56
new method for console rules
wisechengyi d4057e9
doc
wisechengyi 73679c6
extract method
wisechengyi ac9741d
fix dep and fmt
wisechengyi bb1839a
adjust interface
wisechengyi a66be04
refactor exception handling for console rules
wisechengyi 446370b
--v2-ui to global opts + validation
wisechengyi 7739761
dangling parenthesis
wisechengyi a7aa106
make static
wisechengyi bc87c72
display create and initialize works
wisechengyi 3c09ec8
simplify display logic
wisechengyi a3500fe
remove non tty case for engine display
wisechengyi dda77fd
fix doc
wisechengyi 725cf8f
fmt
wisechengyi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,3 +86,4 @@ resettable = { path = "resettable" } | |
smallvec = "0.6" | ||
tokio = "0.1" | ||
tempfile = "3" | ||
ui = { path = "ui" } |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This return type is likely overkill, but easy to fix in a followup.