fix: Allow repos that don't have a files/ directory

This commit is contained in:
Gerald Pinder 2025-06-20 22:48:39 -04:00
parent 2e77fd33d7
commit 5180411545
10 changed files with 352 additions and 10 deletions

View file

@ -134,7 +134,7 @@ cargo_bin := if env('CARGO_HOME', '') != '' {
}
# 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
integration-tests: test-docker-build test-empty-files-build test-arm64-build test-podman-build test-buildah-build test-generate-iso-image test-generate-iso-recipe
# Run docker driver integration test
test-docker-build: install-debug-all-features
@ -148,6 +148,16 @@ test-docker-build: install-debug-all-features
-vv \
recipes/recipe.yml recipes/recipe-gts.yml
test-empty-files-build: install-debug-all-features
cd integration-tests/empty-files-repo \
&& bluebuild build \
--retry-push \
-B docker \
-I docker \
-S sigstore \
{{ should_push }} \
-vv
test-rechunk-build: install-debug-all-features
cd integration-tests/test-repo \
&& bluebuild build \