Skip to content

Commit 92ee82d

Browse files
committed
Justfile: Fix unbound buildroot_base issue
Signed-off-by: Xiaofeng Wang <[email protected]>
1 parent 6ddbd01 commit 92ee82d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ buildargs := "--build-arg=base=" + base + " --build-arg=variant=" + variant
4242
# `just build --build-arg=base=quay.io/fedora/fedora-bootc:42`
4343
build: package
4444
podman build {{base_buildargs}} -t {{base_img}}-bin {{buildargs}} .
45-
./tests/build-sealed {{variant}} {{base_img}}-bin {{base_img}}
45+
./tests/build-sealed {{variant}} {{base_img}}-bin {{base_img}} {{buildroot_base}}
4646

4747
# Build the container image using pre-existing packages from PATH
4848
build-from-package PATH:
@@ -107,7 +107,7 @@ build-integration-test-image: build
107107
build-integration-test-image-from-package PATH:
108108
@just build-from-package {{PATH}}
109109
cd hack && podman build {{base_buildargs}} -t {{integration_img}}-bin -f Containerfile .
110-
./tests/build-sealed {{variant}} {{integration_img}}-bin {{integration_img}}
110+
./tests/build-sealed {{variant}} {{integration_img}}-bin {{integration_img}} {{buildroot_base}}
111111
# Keep these in sync with what's used in hack/lbi
112112
podman pull -q --retry 5 --retry-delay 5s quay.io/curl/curl:latest quay.io/curl/curl-base:latest registry.access.redhat.com/ubi9/podman:latest
113113

0 commit comments

Comments
 (0)