-
Notifications
You must be signed in to change notification settings - Fork 133
43 lines (40 loc) · 1 KB
/
kind-e2e.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Chains kind E2E Tests
on:
pull_request:
branches:
- main
- release-*
defaults:
run:
shell: bash
working-directory: ./
jobs:
k8s:
strategy:
fail-fast: false # Keep running if one leg fails.
matrix:
# Keep in sync with the list of supported releases: https://kubernetes.io/releases/
k8s-version:
- v1.25.x
- v1.26.x
- v1.27.x
# Needs https://github.com/sigstore/scaffolding/pull/756
# - v1.28.x
uses: ./.github/workflows/reusable-e2e.yaml
with:
k8s-version: ${{ matrix.k8s-version }}
pipelines-release: v0.50.1
pipelines-lts:
strategy:
fail-fast: false # Keep running if one leg fails.
matrix:
pipelines-release:
- v0.41.3 # LTS
- v0.44.4 # LTS
- v0.47.3 # LTS
- v0.50.1 # LTS
- v0.51.0
uses: ./.github/workflows/reusable-e2e.yaml
with:
k8s-version: v1.26.x
pipelines-release: ${{ matrix.pipelines-release }}