Skip to content

Commit 303163e

Browse files
committed
Pin e2e smoke runner to repo gondolin CLI version
1 parent f6121c9 commit 303163e

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

scripts/e2e-smoke.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@ bun run oci2gondolin -- \
3333
--mode assets \
3434
--out "${OUT_DIR}"
3535

36-
GONDOLIN_GUEST_DIR="${OUT_DIR}" bunx gondolin exec -- /bin/busybox echo e2e-smoke-ok
36+
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
3743

3844
echo "E2E smoke test passed (image=${IMAGE}, platform=${TARGET_PLATFORM})."

0 commit comments

Comments
 (0)