You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.PHONY: build test test-dual-mode interop-live ci install
build:
zig build -Doptimize=ReleaseFast
test:
zig build test --summary all
test-dual-mode:
zig build test-dual-mode-regression --summary all
interop-live:
./tools/lsquic_live_interop.sh
ci:
zig build test-dual-mode-regression --summary all
zig build test --summary all
@if [ "$(LIBFAST_RUN_LIVE_INTEROP)" = "1" ]; then ./tools/lsquic_live_interop.sh; else echo "Skipping live LSQUIC interop (set LIBFAST_RUN_LIVE_INTEROP=1 to enable)"; fi