-
Notifications
You must be signed in to change notification settings - Fork 60
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
progress: move from an internal package to external #804
Conversation
cbc27e5
to
cba2ad7
Compare
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.
Nice and simple.
I realise it's weird to have ib-cli import bib for this, but I'm fine with unblocking this work while we discuss what should go where and tidying up 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.
Nice (and temporary while we think about the rest).
This will fail with the current |
This commit makes the previously internal `progress` package an external API. The is the result of the discussion in images PR#1150 where we decided that the progress module is not a great fit for the "images" library. We want to share this code between bootc-image-builder and image-builder-cli now. In the future we will also want to use it in the `worker-executor` in `osbuild-composer` to parse the stream data from `osbuild`. We plan to merge bootc-image-builder and image-builder-cli medium term so importing code from bootc-image-buider in image-builder cli is not that stange. When we (longer-term) use this code the `worker-executor` we will need to think about this again and maybe put it back into images. However this commit unblocks us without making anything worse.
cba2ad7
to
80f8d50
Compare
This commit makes the previously internal
progress
package an external API. The is the result of the discussion in images PR#1150 where we decided that the progress module is not a great fit for the "images" library.We want to share this code between bootc-image-builder and image-builder-cli now. In the future we will also want to use it in the
worker-executor
inosbuild-composer
to parse the stream data fromosbuild
.We plan to merge bootc-image-builder and image-builder-cli medium term so importing code from bootc-image-buider in image-builder cli is not that stange.
When we (longer-term) use this code the
worker-executor
we will need to think about this again and maybe put it back into images. However this commit unblocks us without making anything worse.