-
Notifications
You must be signed in to change notification settings - Fork 10
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
[stacked] Finalize bullet_stream output update #769
Open
schneems
wants to merge
25
commits into
malax/output
Choose a base branch
from
schneems/bs_output_ready_for_review
base: malax/output
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
Right now the task name is so long you can't see which guide is being executed without clicking through. This PR refactors the task so that the name is shorter (by making the task name shorter and removing arch variables from the matrix.
Uses the newly defined `output` interface that Manuel introduced for the JVM buildpack in #745 instead of the legacy libherokubuildpack::log::log_error. For all buildpacks except for jvm-function-invoker.
The trailing whitespace after the `! ` shouldn't be significant.
schneems
changed the title
Finalize bullet_stream output update
[stacked] Finalize bullet_stream output update
Jan 31, 2025
The `track_timing` interface (from the name alone) isn't clear that it produces a sub-bullet output (it wasn't actually clear that it didn't produce dots `.....`). There are places where it's used incorrectly: ``` - Running `./mvnw dependency:list` quietly - Done (7.6s) ``` This change makes it harder to use wrong. Every streamed command has timing information emitted, guaranteed, so there's never a mistake of output from one command bleeding into another by accident.
This doesn't use the bullet_stream "dots" feature (which I don't think is implemented here) but it does emit the timing information on the next line to indicate that it finished.
``` - Done (4.4s) Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF-8 - Done (finished in 34.0s) ```
schneems
added
the
skip changelog
Pull requests that do not require changes to the CHANGELOG file
label
Jan 31, 2025
schneems
force-pushed
the
schneems/bs_output_ready_for_review
branch
from
January 31, 2025 23:13
d34f43c
to
f02864f
Compare
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.
Carries #745 over the line so the new output format can be merged. As opposed to #767 this is intended to be a minimal change. It does not resolve #762. It does not update the
jvm-function-invoker
buildpack's output.Commits are targeted and intended to be reviewed individually, in order.