-
Notifications
You must be signed in to change notification settings - Fork 156
56 lines (52 loc) · 1.72 KB
/
kind-e2e.yaml
File metadata and controls
56 lines (52 loc) · 1.72 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Chains kind E2E Tests
'on':
workflow_call: {}
# on:
# pull_request:
# branches:
# - main
# - release-*
defaults:
run:
shell: bash
working-directory: ./
jobs:
k8s:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ matrix.k8s-version }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
strategy:
fail-fast: false # Keep running if one leg fails.
matrix:
# Keep in sync with the list of supported releases: https://kubernetes.io/releases/
# Add latest k8s-version once it is added in https://github.com/sigstore/scaffolding/releases
k8s-version:
- v1.31.x
- v1.32.x
- v1.33.x
uses: ./.github/workflows/reusable-e2e.yaml
with:
k8s-version: ${{ matrix.k8s-version }}
pipelines-release: v1.2.0 # Latest version
pipelines-lts:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ matrix.pipelines-release }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
strategy:
fail-fast: false # Keep running if one leg fails.
matrix:
pipelines-release:
# This should follow the list of versions from https://github.com/tektoncd/pipeline/blob/main/releases.md#release
# TODO: Ideally, we should get this directly from pipeline repository
- v0.68.1 # LTS
- v1.0.0 # LTS
- v1.3.2 # LTS
- v1.6.0 # LTS
uses: ./.github/workflows/reusable-e2e.yaml
with:
k8s-version: v1.33.x # intersection of the latest version and scaffolding
pipelines-release: ${{ matrix.pipelines-release }}