mirror of
https://github.com/fluxcd/flagger.git
synced 2026-03-02 17:51:00 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [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/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
51 lines
1.1 KiB
YAML
51 lines
1.1 KiB
YAML
name: e2e
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
e2e-test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
provider:
|
|
# service mesh
|
|
- istio
|
|
- linkerd
|
|
- osm
|
|
- kuma
|
|
# ingress controllers
|
|
- contour
|
|
- nginx
|
|
- traefik
|
|
- gloo
|
|
- skipper
|
|
- kubernetes
|
|
- gatewayapi
|
|
- keda
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Setup Kubernetes
|
|
uses: engineerd/setup-kind@v0.5.0
|
|
with:
|
|
version: "v0.14.0"
|
|
image: kindest/node:v1.23.6@sha256:b1fa224cc6c7ff32455e0b1fd9cbfd3d3bc87ecaa8fcb06961ed1afb3db0f9ae
|
|
- name: Build container image
|
|
run: |
|
|
docker build -t test/flagger:latest .
|
|
kind load docker-image test/flagger:latest
|
|
- name: Run tests
|
|
run: |
|
|
./test/${{ matrix['provider'] }}/run.sh
|