Skip to content

Commit

Permalink
Add external network E2E to flake finder
Browse files Browse the repository at this point in the history
Include new external network deployments and tests in the periodic tests
against devel meant to find flaky failures.

Signed-off-by: Daniel Farrell <[email protected]>
  • Loading branch information
dfarrell07 committed Apr 1, 2022
1 parent 4737d5c commit 4e3da2f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/flake_finder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,27 @@ jobs:
deploytool: ['operator']
globalnet: ['', 'globalnet']
cable_driver: ['libreswan', 'wireguard']
include:
- external_net: 'external-net'
- external_net: 'external-net'
globalnet: 'globalnet'
steps:
- name: Check out the repository
uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846

- name: Run E2E deployment and tests
if: matrix.external_net != 'external-net'
uses: submariner-io/shipyard/gh-actions/e2e@devel
with:
using: ${{ matrix.cable_driver }} ${{ matrix.deploytool }} ${{ matrix.globalnet }}

- name: Run External Network E2E deployment and tests
if: matrix.external_net == 'external-net'
uses: submariner-io/shipyard/gh-actions/e2e@devel
with:
using: ${{ matrix.external_net }} ${{ matrix.globalnet }}
skip: "" # Override skipping external network tests

- name: Post mortem
if: failure()
uses: submariner-io/shipyard/gh-actions/post-mortem@devel

0 comments on commit 4e3da2f

Please sign in to comment.