Skip to content

Bump the github-actions group with 3 updates #7536

Bump the github-actions group with 3 updates

Bump the github-actions group with 3 updates #7536

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: 30
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
globalnet: ['', 'globalnet']
# Run most tests against the latest K8s version
k8s_version: ['1.25']
lighthouse: ['', 'lighthouse']
ovn: ['', 'ovn']
exclude:
- ovn: 'ovn'
lighthouse: 'lighthouse'
- ovn: 'ovn'
globalnet: 'globalnet'
include:
# Oldest Kubernetes version thought to work with SubM.
# This should match minK8sMajor.minK8sMinor in subctl/pkg/version/version.go.
# If this breaks, we may advance the minimum K8s version instead of fixing it. See:
# https://submariner.io/development/building-testing/ci-maintenance/
- k8s_version: '1.19'
# Run default E2E against all supported K8s versions
- k8s_version: '1.22'
- k8s_version: '1.23'
- k8s_version: '1.24'
steps:
- name: Check out the repository
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
- name: Run E2E deployment and tests
uses: submariner-io/shipyard/gh-actions/[email protected]
with:
k8s_version: ${{ matrix.k8s_version }}
using: ${{ matrix.globalnet }} ${{ matrix.lighthouse }} ${{ matrix.ovn }}
- name: Post mortem
if: failure()
uses: submariner-io/shipyard/gh-actions/[email protected]