Skip to content

Commit

Permalink
Adds back e2e against multiple Envoy images (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
M4tteoP authored Sep 6, 2023
1 parent 61f7926 commit 196bb88
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,12 @@ jobs:
run: go run mage.go coverage

- name: Run e2e tests
run: go run mage.go e2e
shell: bash
run: >
for image in $ENVOY_IMAGES; do
echo "Running e2e with Envoy image $image"
ENVOY_IMAGE=$image go run mage.go e2e
done
- name: Run regression tests (ftw)
run: go run mage.go ftw
Expand Down

0 comments on commit 196bb88

Please sign in to comment.