mirror of
https://github.com/fluxcd/flagger.git
synced 2026-02-14 18:10:00 +00:00
Bumps the ci group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-go](https://github.com/actions/setup-go), [sigstore/cosign-installer](https://github.com/sigstore/cosign-installer) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/checkout` from 4 to 5 - [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/v4...v5) Updates `actions/setup-go` from 5 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v5...v6) Updates `sigstore/cosign-installer` from 3.8.1 to 3.10.0 - [Release notes](https://github.com/sigstore/cosign-installer/releases) - [Commits](https://github.com/sigstore/cosign-installer/compare/v3.8.1...v3.10.0) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci - dependency-name: sigstore/cosign-installer dependency-version: 3.10.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ci - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci ... Signed-off-by: dependabot[bot] <support@github.com>
63 lines
1.5 KiB
YAML
63 lines
1.5 KiB
YAML
name: e2e
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
e2e-test:
|
|
runs-on:
|
|
group: "Default Larger Runners"
|
|
labels: ubuntu-latest-16-cores
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
provider:
|
|
# service mesh
|
|
- istio
|
|
- linkerd
|
|
- kuma
|
|
# ingress controllers
|
|
- contour
|
|
- nginx
|
|
- traefik
|
|
- gloo
|
|
- skipper
|
|
- kubernetes
|
|
- gatewayapi
|
|
- keda
|
|
- apisix
|
|
- knative
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v5
|
|
- name: Setup Kubernetes
|
|
uses: helm/kind-action@v1.12.0
|
|
if: matrix.provider != 'skipper'
|
|
with:
|
|
version: v0.23.0
|
|
cluster_name: kind
|
|
node_image: kindest/node:v1.30.0@sha256:047357ac0cfea04663786a612ba1eaba9702bef25227a794b52890dd8bcd692e
|
|
- name: Setup Kubernetes for skipper
|
|
uses: helm/kind-action@v1.12.0
|
|
if: matrix.provider == 'skipper'
|
|
with:
|
|
version: v0.23.0
|
|
cluster_name: kind
|
|
node_image: kindest/node:v1.24.12@sha256:0bdca26bd7fe65c823640b14253ea7bac4baad9336b332c94850f84d8102f873
|
|
- 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
|