We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6121c9 commit 303163eCopy full SHA for 303163e
1 file changed
scripts/e2e-smoke.sh
@@ -33,6 +33,12 @@ bun run oci2gondolin -- \
33
--mode assets \
34
--out "${OUT_DIR}"
35
36
-GONDOLIN_GUEST_DIR="${OUT_DIR}" bunx gondolin exec -- /bin/busybox echo e2e-smoke-ok
+GONDOLIN_BIN="${ROOT_DIR}/node_modules/@earendil-works/gondolin/dist/bin/gondolin.js"
37
+if [[ ! -f "${GONDOLIN_BIN}" ]]; then
38
+ echo "gondolin CLI not found at ${GONDOLIN_BIN}"
39
+ exit 1
40
+fi
41
+
42
+GONDOLIN_GUEST_DIR="${OUT_DIR}" bun "${GONDOLIN_BIN}" exec -- /bin/busybox echo e2e-smoke-ok
43
44
echo "E2E smoke test passed (image=${IMAGE}, platform=${TARGET_PLATFORM})."
0 commit comments