envoyproxy/gateway

ci: wire standalone test suite into GitHub Actions

Open

#9.084 geöffnet am 27. Mai 2026

Auf GitHub ansehen
 (0 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)Go (802 Forks)auto 404
help wanted

Repository-Metriken

Stars
 (2.871 Stars)
PR-Merge-Metriken
 (PR-Metriken ausstehend)

Beschreibung

What happened

The standalone test suite under test/standalone is guarded by the standalone build tag, but it does not appear to be wired into the GitHub Actions CI workflow or any Make target used by CI.

Why this matters

Host/standalone mode has process-level coverage in test/standalone, but because the suite is not run by CI, regressions in standalone mode can slip through. This also makes it harder to maintain confidence in non-Kubernetes infrastructure-provider behavior over time.

Suggested fix

Add a CI target for the standalone suite, for example:

cd test && go test -v -tags standalone ./standalone

If needed, CI can prebuild the envoy-gateway binary and pass it through ENVOY_GATEWAY_BIN before running the standalone suite.

Expected behavior

The standalone test suite should run reliably in GitHub Actions.

Contributor Guide