-
Notifications
You must be signed in to change notification settings - Fork 193
53 lines (47 loc) · 1.63 KB
/
e2e-full.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
name: End to End Full
on:
pull_request:
types: [labeled, opened, synchronize, reopened]
permissions: {}
jobs:
e2e:
name: E2E
if: contains(github.event.pull_request.labels.*.name, 'ready-to-test')
timeout-minutes: 45
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
deploytool: ['operator']
external_net: ['']
globalnet: ['', 'globalnet']
cable_driver: ['libreswan', 'wireguard', 'vxlan']
ovn: ['', 'ovn']
exclude:
- ovn: 'ovn'
globalnet: 'globalnet'
- ovn: 'ovn'
cable_driver: 'wireguard'
include:
- external_net: 'external-net'
- external_net: 'external-net'
globalnet: 'globalnet'
steps:
- name: Check out the repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Run E2E deployment and tests
if: matrix.external_net != 'external-net'
uses: submariner-io/shipyard/gh-actions/e2e@release-0.14
with:
using: ${{ matrix.cable_driver }} ${{ matrix.deploytool }} ${{ matrix.globalnet }} ${{ matrix.ovn }}
- name: Run External Network E2E deployment and tests
if: matrix.external_net == 'external-net'
uses: submariner-io/shipyard/gh-actions/e2e@release-0.14
with:
using: ${{ matrix.external_net }} ${{ matrix.globalnet }}
skip: "" # Override skipping external network tests
plugin: scripts/e2e/external/hook
- name: Post mortem
if: failure()
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.14