Skip to content

Commit 00b477a

Browse files
committed
rebase with main
1 parent 5e4bd34 commit 00b477a

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/functional.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,5 +128,5 @@ jobs:
128128
run: |
129129
ngf_prefix=ghcr.io/nginxinc/nginx-gateway-fabric
130130
ngf_tag=${{ steps.ngf-meta.outputs.version }}
131-
make functional-test${{ matrix.nginx-image == 'nginx-plus' && '-nginx-plus' || ''}} PREFIX=${ngf_prefix} TAG=${ngf_tag}
131+
make test${{ matrix.nginx-image == 'nginx-plus' && '-with-plus' || ''}} PREFIX=${ngf_prefix} TAG=${ngf_tag}
132132
working-directory: ./tests

tests/Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,10 @@ test: ## Runs the functional tests on your default k8s cluster
106106
--pull-policy=$(PULL_POLICY) --k8s-version=$(K8S_VERSION) --service-type=$(GW_SERVICE_TYPE) \
107107
--is-gke-internal-lb=$(GW_SVC_GKE_INTERNAL)
108108

109+
.PHONY: test-with-plus
110+
test-with-plus: ## Runs the functional tests for NGF with NGINX Plus on your default k8s cluster
111+
make test PLUS_ENABLED=true
112+
109113
.PHONY: cleanup-gcp
110114
cleanup-gcp: cleanup-router cleanup-vm delete-gke-cluster ## Cleanup all GCP resources
111115

0 commit comments

Comments
 (0)