-
Notifications
You must be signed in to change notification settings - Fork 23
37 lines (32 loc) · 1 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
---
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') && github.event.pull_request.state == 'open'
timeout-minutes: 120
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
globalnet: ['', 'globalnet']
lighthouse: ['', 'lighthouse']
ovn: ['']
include:
- ovn: 'ovn'
lighthouse: 'lighthouse'
globalnet: 'globalnet'
steps:
- name: Check out the repository
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- name: Run E2E deployment and tests
uses: submariner-io/shipyard/gh-actions/e2e@release-0.17
with:
using: ${{ matrix.globalnet }} ${{ matrix.lighthouse }} ${{ matrix.ovn }}
- name: Post mortem
if: failure()
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.17