From a14a212cc6cf2a2e0feab44c1bbb16b8a508b43c Mon Sep 17 00:00:00 2001 From: a2nr Date: Mon, 10 Aug 2026 12:03:53 +0700 Subject: [PATCH] test(elemes): lock all three exportall build tags; note runbuild for unbundled services --- elemes.sh | 3 ++- test_elemes_sh.sh | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/elemes.sh b/elemes.sh index 23a5bd9..cd37c68 100755 --- a/elemes.sh +++ b/elemes.sh @@ -217,7 +217,8 @@ exportall) echo " - lms-frontend:latest (untuk service elemes-frontend)" echo " - lms-velxio:latest (untuk service velxio)" echo " â„šī¸ Service compiler-worker & flowchart TIDAK ikut bundle — di VPS" - echo " image-nya di-build otomatis oleh podman-compose dari source (build:)." + echo " image-nya di-build otomatis oleh podman-compose dari source (build:);" + echo " pastikan folder source ikut ter-upload, atau jalankan: ./elemes.sh runbuild" else echo "❌ Export gagal." fi diff --git a/test_elemes_sh.sh b/test_elemes_sh.sh index 8ac855f..abf3763 100755 --- a/test_elemes_sh.sh +++ b/test_elemes_sh.sh @@ -214,6 +214,12 @@ else grep -q "build -t lms-backend:latest" "$FAKEBIN/calls.log" \ && ok "exportall build tag lms-backend:latest" \ || fail "exportall tidak build tag lms-backend:latest" + grep -q "build -t lms-frontend:latest" "$FAKEBIN/calls.log" \ + && ok "exportall build tag lms-frontend:latest" \ + || fail "exportall tidak build tag lms-frontend:latest" + grep -q "build -t lms-velxio:latest" "$FAKEBIN/calls.log" \ + && ok "exportall build tag lms-velxio:latest" \ + || fail "exportall tidak build tag lms-velxio:latest" grep -q "save lms-backend:latest lms-frontend:latest lms-velxio:latest" "$FAKEBIN/calls.log" \ && ok "exportall save 3 image dengan tag lms-*" \ || fail "exportall tidak save dengan tag lms-*"