test(elemes): lock all three exportall build tags; note runbuild for unbundled services

This commit is contained in:
a2nr 2026-08-10 12:03:53 +07:00
parent c83a47b357
commit a14a212cc6
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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-*"