From 2ad660b9fc012df84cc6d6e34201957db890dba8 Mon Sep 17 00:00:00 2001 From: bitliu Date: Thu, 7 Sep 2023 19:32:12 +0800 Subject: [PATCH] :art: Update Signed-off-by: bitliu --- test/conformance/experimental_conformance_test.go | 3 +++ tools/make/kube.mk | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/test/conformance/experimental_conformance_test.go b/test/conformance/experimental_conformance_test.go index e38e8b1d6921..46b0917408fd 100644 --- a/test/conformance/experimental_conformance_test.go +++ b/test/conformance/experimental_conformance_test.go @@ -1,3 +1,6 @@ +//go:build experimental +// +build experimental + // Copyright Envoy Gateway Authors // SPDX-License-Identifier: Apache-2.0 // The full text of the Apache license is available in the LICENSE file at diff --git a/tools/make/kube.mk b/tools/make/kube.mk index 34e58c0cc16b..1f71612fecbb 100644 --- a/tools/make/kube.mk +++ b/tools/make/kube.mk @@ -185,7 +185,7 @@ run-experimental-conformance: ## Run Experimental Gateway API conformance. kubectl wait --timeout=$(WAIT_TIMEOUT) -n envoy-gateway-system deployment/envoy-gateway --for=condition=Available kubectl wait --timeout=$(WAIT_TIMEOUT) -n gateway-system job/gateway-api-admission --for=condition=Complete kubectl apply -f test/config/gatewayclass.yaml - go test -v ./test/conformance -run TestExperimentalConformance --gateway-class=envoy-gateway --debug=true --organization=envoyproxy --project=envoy-gateway --url=https://github.com/envoyproxy/gateway --version=latest --report-output="$(CONFORMANCE_REPORT_PATH)" --contact=https://github.com/envoyproxy/gateway/blob/main/GOVERNANCE.md + go test -v -tags experimental ./test/conformance -run TestExperimentalConformance --gateway-class=envoy-gateway --debug=true --organization=envoyproxy --project=envoy-gateway --url=https://github.com/envoyproxy/gateway --version=latest --report-output="$(CONFORMANCE_REPORT_PATH)" --contact=https://github.com/envoyproxy/gateway/blob/main/GOVERNANCE.md .PHONY: delete-cluster delete-cluster: $(tools/kind) ## Delete kind cluster.