Skip to content

Commit 9025fd4

Browse files
committed
gha: Add extended features in gateway profile run
Unlike normal run, Gateway API conformance profile didn't work well with exempt features flag, which causes issues of missing extended features in the report. This commit is to use --skip-tests instead. Signed-off-by: Tam Mach <[email protected]>
1 parent 9bfc992 commit 9025fd4

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/conformance-gateway-api.yaml

+5-2
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,10 @@ jobs:
128128
EXEMPT_FEATURES+=",HTTPRouteDestinationPortMatching,HTTPRouteRequestTimeout,HTTPRouteBackendTimeout"
129129
fi
130130
131+
if [ ${{ matrix.conformance-profile }} == "true" ]; then
132+
SKIPPED_TESTS+="GatewayStaticAddresses,MeshConsumerRoute,HTTPRouteListenerPortMatching"
133+
fi
134+
131135
CILIUM_INSTALL_DEFAULTS="${{ steps.default_vars.outputs.cilium_install_defaults }} \
132136
--helm-set=kubeProxyReplacement=true \
133137
--helm-set=extraArgs={--envoy-config-retry-interval=5s} \
@@ -262,7 +266,7 @@ jobs:
262266
-v ./operator/pkg/gateway-api \
263267
--gateway-class cilium \
264268
--all-features \
265-
--exempt-features "${{ steps.vars.outputs.exempt-features }}" \
269+
--skip-tests "${{ steps.vars.outputs.skipped_tests }}" \
266270
--allow-crds-mismatch \
267271
--conformance-profiles GATEWAY-HTTP,GATEWAY-TLS,GATEWAY-GRPC,MESH-HTTP,MESH-GRPC \
268272
--organization cilium \
@@ -272,7 +276,6 @@ jobs:
272276
--contact https://github.com/cilium/community/blob/main/roles/Maintainers.md \
273277
--report-output report.yaml \
274278
-test.run "TestConformance" \
275-
-test.skip "${{ steps.vars.outputs.skipped_tests }}" \
276279
-json \
277280
| tparse -progress
278281
else

0 commit comments

Comments
 (0)