feat: update chain's controllers to use v1 Tekton APIs natively while converting to v1beta1 to keep formats backwards compatible #1612
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.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 }} |