File tree Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -136,15 +136,13 @@ jobs:
136136 test_extproc :
137137 needs : changes
138138 if : ${{ needs.changes.outputs.code == 'true' }}
139- name : External Processor Test (Envoy v${{ matrix.version }} on ${{ matrix.os }})
139+ name : External Processor Test (${{ matrix.os }})
140140 strategy :
141141 fail-fast : false
142142 matrix :
143- include :
144- - version : 1.36.0
145- os : ubuntu-latest
146- - version : 1.36.0
147- os : macos-latest
143+ os :
144+ - ubuntu-latest
145+ - macos-latest
148146 runs-on : ${{ matrix.os }}
149147 steps :
150148 - uses : actions/checkout@v4
@@ -170,7 +168,7 @@ jobs:
170168 TEST_DEEPINFRA_API_KEY : ${{ secrets.ENVOY_AI_GATEWAY_DEEPINFRA_API_KEY }}
171169 TEST_GITHUB_ACCESS_TOKEN : ${{ secrets.GITHUB_TOKEN }}
172170 # This will be picked up by func-e to run the specified Envoy version.
173- ENVOY_VERSION : ${{ matrix.version }}
171+ ENVOY_VERSION : 1.36.0
174172 run : make test-extproc
175173
176174 test_e2e :
Original file line number Diff line number Diff line change @@ -155,8 +155,8 @@ test-crdcel: apigen ## Run the integration tests of CEL validation in CRD defini
155155.PHONY : test-extproc # This requires the extproc binary to be built.
156156test-extproc : build.extproc # # Run the integration tests for extproc without controller or k8s at all.
157157 @$(MAKE ) build.testupstream CMD_PATH_PREFIX=tests/internal/testupstreamlib
158- @echo " Ensure func-e is built for test-extproc "
159- @@$(GO_TOOL ) func-e help > /dev/null 2>&1
158+ @echo " Ensure func-e is built and Envoy is installed "
159+ @@$(GO_TOOL ) func-e run -- help > /dev/null 2>&1
160160 @echo " Run ExtProc test"
161161 @EXTPROC_BIN=$(OUTPUT_DIR ) /extproc-$(shell go env GOOS) -$(shell go env GOARCH) go test ./tests/extproc/... $(GO_TEST_E2E_ARGS )
162162
You can’t perform that action at this time.
0 commit comments