🌱 Bump controller runtime to v0.18.5 and CAPI to v1.8.3 #780
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: E2E Test pipeline | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, reopened, ready_for_review] | |
branches: | |
- 'main' | |
- 'release-*' | |
paths-ignore: | |
- '**/*.md' | |
- 'docs/**' | |
- '.gitignore' | |
- 'LICENSE' | |
- 'SECURITY_CONTACTS' | |
- 'DCO' | |
- 'OWNERS' | |
permissions: {} | |
jobs: | |
golangci-lint: | |
if: github.event.pull_request.draft == false | |
uses: ./.github/workflows/golangci-lint.yml | |
unit: | |
if: github.event.pull_request.draft == false | |
uses: ./.github/workflows/unit.yml | |
e2e-fixture-test: | |
needs: [golangci-lint, unit] | |
uses: ./.github/workflows/e2e-fixture-test.yml | |
e2e-test: | |
needs: [golangci-lint, unit] | |
strategy: | |
# Avoid wasting CI resources | |
fail-fast: true | |
matrix: | |
bmc-protocol: | |
- redfish-virtualmedia | |
- ipmi | |
uses: ./.github/workflows/e2e-test.yml | |
with: | |
bmc-protocol: ${{ matrix.bmc-protocol }} |