-
Notifications
You must be signed in to change notification settings - Fork 140
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
More compress options #310
base: main
Are you sure you want to change the base?
Conversation
c74767f
to
49a5891
Compare
log.Printf("Compressing to %s\n", outfile) | ||
return debos.Command{}.Run("Packing", "tar", tarOpt, outfile, | ||
return debos.Command{}.Run("Packing", "tar", "cf", compressOpt outfile, |
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.
Nit: no comma between arguments
If we opt for libarchive (see #316) we could transparently support these formats, without adding extra code to debos. It's a very tempting, but bear in mind, I'm not sure if my initial idea will be accepted. |
bors r+ |
282: actions: overlay: Log using action log functions r=obbardc a=obbardc Currently the overlay action prints directly to stdout, which ends up not following the standard output format the other actions follow. Let's clean this up by using the action's existing logging functions rather than printing directly to stdout. Signed-off-by: Christopher Obbard <[email protected]> 310: More compress options r=obbardc a=rektide Add `zstd`, `lzop`, `lzma`, `lzip` options. Add `auto` for pack. Co-authored-by: Christopher Obbard <[email protected]> Co-authored-by: rektide de la faye <[email protected]>
Build failed (retrying...): |
310: More compress options r=obbardc a=rektide Add `zstd`, `lzop`, `lzma`, `lzip` options. Add `auto` for pack. Co-authored-by: rektide de la faye <[email protected]>
Build failed: |
@rektide Can you rebase onto latest main & fix the conflicts ? |
Add
zstd
,lzop
,lzma
,lzip
options. Addauto
for pack.