-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (33 loc) · 978 Bytes
/
flake_finder.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
name: Flake Finder
on:
schedule:
- cron: "0 0,1 * * *"
permissions: {}
jobs:
e2e:
name: E2E
if: github.repository_owner == 'submariner-io'
timeout-minutes: 45
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
cable-driver: ['libreswan', 'wireguard', 'vxlan']
extra-toggles: ['', 'globalnet', 'ovn']
exclude:
- cable-driver: wireguard
extra-toggles: ovn
include:
- extra-toggles: globalnet, ovn
- extra-toggles: external-net
steps:
- name: Check out the repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Run E2E deployment and tests
uses: submariner-io/shipyard/gh-actions/e2e@devel
with:
using: ${{ matrix.cable-driver }} ${{ matrix.extra-toggles }}
- name: Post mortem
if: failure()
uses: submariner-io/shipyard/gh-actions/post-mortem@devel