Skip to content

Commit df7280c

Browse files
authored
ci: add missing EG_VERSION env var in inference e2e (envoyproxy#1352)
**Description** Add the missing environment variable to force the EG version to use in the inference e2e tests. **Related Issues/PRs (if applicable)** N/A **Special notes for reviewers (if applicable)** N/A --------- Signed-off-by: Ignasi Barrera <[email protected]>
1 parent bdd9785 commit df7280c

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

.github/workflows/build_and_test.yaml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -294,20 +294,12 @@ jobs:
294294
test_e2e_inference_extension:
295295
needs: changes
296296
if: ${{ needs.changes.outputs.code == 'true' }}
297-
name: E2E Test for Inference Extensions (Envoy Gateway ${{ matrix.name }})
297+
name: E2E Test for Inference Extensions
298298
# TODO: make it possible to run this job on macOS as well, which is a bit tricky due to the nested
299299
# virtualization is not supported on macOS runners.
300300
# E.g. Use https://github.com/douglascamata/setup-docker-macos-action per the comment in
301301
# https://github.com/actions/runner-images/issues/17#issuecomment-1971073406
302302
runs-on: ubuntu-latest
303-
strategy:
304-
fail-fast: false
305-
matrix:
306-
include:
307-
- name: latest
308-
envoy_gateway_version: v0.0.0-latest
309-
- name: v1.5.0
310-
envoy_gateway_version: v1.5.0
311303
steps:
312304
- uses: actions/checkout@v4
313305
- uses: actions/setup-go@v5
@@ -324,6 +316,10 @@ jobs:
324316
key: e2e-test-${{ hashFiles('**/go.mod', '**/go.sum', '**/Makefile') }}
325317
- uses: docker/setup-buildx-action@v3
326318
- run: make test-e2e-inference-extension
319+
env:
320+
# We only need to test with the latest stable version of EG, since these e2e tests
321+
# do not depend on the EG version.
322+
EG_VERSION: v1.5.0
327323

328324
test_e2e_aigw:
329325
needs: changes

0 commit comments

Comments
 (0)