Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/functions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -247,12 +247,12 @@ jobs:
test-e2e-podman:
name: E2E - Podman
needs: precheck
runs-on: ubuntu-latest
strategy:
matrix:
os:
- "ubuntu-latest" # x86_64
- "ubuntu-24.04-arm" # ARM64
runs-on: ${{ matrix.os }}
Comment on lines 250 to +255
Copy link

Copilot AI Mar 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

test-e2e-podman uses a matrix but doesn’t set strategy.fail-fast: false. Other matrix jobs in this workflow (e.g., test-unit, test-templates) disable fail-fast so all OS/arch variants still run even if one fails. Consider doing the same here so an early failure on one runner doesn’t cancel the other architecture’s run.

Copilot uses AI. Check for mistakes.
env:
FUNC_CLUSTER_RETRIES: 5
FUNC_E2E_PODMAN: true
Expand Down
Loading