feat(rechunk): Add the ability to rechunk an image
This commit is contained in:
parent
ffa1789422
commit
b4fbac2a66
22 changed files with 1002 additions and 190 deletions
14
justfile
14
justfile
|
|
@ -126,6 +126,12 @@ should_push := if env('GITHUB_ACTIONS', '') != '' {
|
|||
''
|
||||
}
|
||||
|
||||
cargo_bin := if env('CARGO_HOME', '') != '' {
|
||||
x"${CARGO_HOME:-}/bin"
|
||||
} else {
|
||||
x"$HOME/.cargo/bin"
|
||||
}
|
||||
|
||||
# Run all integration tests
|
||||
integration-tests: test-docker-build test-arm64-build test-podman-build test-buildah-build test-generate-iso-image test-generate-iso-recipe
|
||||
|
||||
|
|
@ -141,6 +147,14 @@ test-docker-build: install-debug-all-features
|
|||
-vv \
|
||||
recipes/recipe.yml recipes/recipe-gts.yml
|
||||
|
||||
test-rechunk-build: install-debug-all-features
|
||||
cd integration-tests/test-repo \
|
||||
&& sudo {{ cargo_bin }}/bluebuild build \
|
||||
{{ should_push }} \
|
||||
-vv \
|
||||
--rechunk \
|
||||
recipes/recipe-rechunk.yml
|
||||
|
||||
# Run arm integration test
|
||||
test-arm64-build: install-debug-all-features
|
||||
cd integration-tests/test-repo \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue