Merge pull request #615 from YuriNachos/fix/smoke-test-exit-code

fix(build): remove non-functional smoke test from package-mac-app.sh
This commit is contained in:
Peter Steinberger
2026-01-09 22:42:08 +00:00
committed by GitHub
2 changed files with 3 additions and 2 deletions

View File

@@ -2,6 +2,7 @@
## Unreleased ## Unreleased
- macOS: replace relay smoke test with version check in packaging script. (#615) — thanks @YuriNachos
- macOS: avoid clearing Launch at Login during app initialization. (#607) — thanks @wes-davis - macOS: avoid clearing Launch at Login during app initialization. (#607) — thanks @wes-davis
- Onboarding: skip systemd checks/daemon installs when systemd user services are unavailable; add onboarding flags to skip flow steps and stabilize Docker E2E. (#573) — thanks @steipete - Onboarding: skip systemd checks/daemon installs when systemd user services are unavailable; add onboarding flags to skip flow steps and stabilize Docker E2E. (#573) — thanks @steipete
- macOS: add node bridge heartbeat pings to detect half-open sockets and reconnect cleanly. (#572) — thanks @ngutman - macOS: add node bridge heartbeat pings to detect half-open sockets and reconnect cleanly. (#572) — thanks @ngutman

View File

@@ -272,8 +272,8 @@ if [[ "${SKIP_GATEWAY_PACKAGE:-0}" != "1" ]]; then
fi fi
rm -rf "$RELAY_BUILD_DIR" rm -rf "$RELAY_BUILD_DIR"
echo "🧪 Smoke testing bundled relay QR modules" echo "🧪 Verifying bundled relay (version)"
"$RELAY_OUT" --smoke qr >/dev/null "$RELAY_OUT" --version >/dev/null
echo "🎨 Copying gateway A2UI host assets" echo "🎨 Copying gateway A2UI host assets"
rm -rf "$RELAY_DIR/a2ui" rm -rf "$RELAY_DIR/a2ui"