mirror of
https://github.com/submariner-io/submariner-charts.git
synced 2026-09-20 22:40:34 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.0.2 to 3.1.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/2541b1294d2704b0964813337f33b291d3f8596b...93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
32 lines
839 B
YAML
32 lines
839 B
YAML
---
|
|
name: Flake Finder
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
jobs:
|
|
e2e:
|
|
name: E2E
|
|
if: github.repository_owner == 'submariner-io'
|
|
timeout-minutes: 30
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
cable_driver: ['libreswan', 'wireguard', 'vxlan']
|
|
globalnet: ['', 'globalnet']
|
|
lighthouse: ['', 'lighthouse']
|
|
steps:
|
|
- name: Check out the repository
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
|
|
|
|
- name: Run E2E deployment and tests
|
|
uses: submariner-io/shipyard/gh-actions/e2e@release-0.12
|
|
with:
|
|
using: ${{ matrix.cable_driver }} ${{ matrix.globalnet }} ${{ matrix.lighthouse }}
|
|
|
|
- name: Post mortem
|
|
if: failure()
|
|
uses: submariner-io/shipyard/gh-actions/post-mortem@release-0.12
|