fix: use tar.bz2 package format and update docker image reference#20
Closed
ppenna wants to merge 1 commit into
Closed
fix: use tar.bz2 package format and update docker image reference#20ppenna wants to merge 1 commit into
ppenna wants to merge 1 commit into
Conversation
ppenna
force-pushed
the
fix/package-format-and-docker-image
branch
from
May 10, 2026 16:36
3a3f378 to
a8c89e6
Compare
- Change package format from .tar.gz to .tar.bz2 (bzip2 compression) - Update verify-package target to use tar tjf (bz2) instead of tar tzf (gz) - Run release (package + verify-package) natively on host, not in Docker, since bzip2 is not available in the Docker image Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
ppenna
force-pushed
the
fix/package-format-and-docker-image
branch
from
May 10, 2026 16:48
a8c89e6 to
718a969
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.
Summary
Fix package format and Docker image references in Makefile.nanvix.
Changes
.tar.gzto.tar.bz2(bzip2 compression)verify-packagetarget to usetar tjf(bz2) instead oftar tzf(gz)nanvix/toolchain:latest-minimaltoghcr.io/nanvix/toolchain-gcc:latestBackground
After migrating Docker images from Docker Hub to GitHub Container Registry, the package and verify-package targets were incorrectly using gzip (
.tar.gz) instead of bzip2 (.tar.bz2). This PR restores the correct packaging format.Validation