--- name: End to End Full on: pull_request: types: [labeled, opened, synchronize, reopened] 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: cable_driver: ['libreswan', 'wireguard', 'vxlan'] globalnet: ['', 'globalnet'] k8s_version: ['1.23'] lighthouse: ['', 'lighthouse'] include: - k8s_version: '1.20' - k8s_version: '1.21' - k8s_version: '1.22' steps: - name: Check out the repository uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab - name: Run E2E deployment and tests uses: submariner-io/shipyard/gh-actions/e2e@release-0.12 with: k8s_version: ${{ matrix.k8s_version }} using: ${{ matrix.cable_driver }} ${{ matrix.globalnet }} ${{ matrix.lighthouse }} - name: Post mortem if: failure() uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.12