Skip to content

Update Admiral to v0.14.8 #4065

Update Admiral to v0.14.8

Update Admiral to v0.14.8 #4065

Workflow file for this run

---
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/[email protected]
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/[email protected]
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/[email protected]