ci(actions): add descriptive names to e2e jobs#16065
Draft
Automaat wants to merge 12 commits intokumahq:masterfrom
Draft
ci(actions): add descriptive names to e2e jobs#16065Automaat wants to merge 12 commits intokumahq:masterfrom
Automaat wants to merge 12 commits intokumahq:masterfrom
Conversation
Signed-off-by: Marcin Skalski <skalskimarcin33@gmail.com>
Contributor
Reviewer Checklist🔍 Each of these sections need to be checked by the reviewer of the PR 🔍:
|
Signed-off-by: Marcin Skalski <skalskimarcin33@gmail.com>
Signed-off-by: Marcin Skalski <skalskimarcin33@gmail.com>
Signed-off-by: Marcin Skalski <skalskimarcin33@gmail.com>
Signed-off-by: Marcin Skalski <skalskimarcin33@gmail.com>
- Use empty target array instead of false so skipped test_e2e produces 0 matrix combos - Remove parallelism from matrix after expanding to parallelRunnerId - Add type guard for jq expansion Signed-off-by: Marcin Skalski <skalskimarcin33@gmail.com>
GitHub UI interprets / as hierarchy separator, causing only the trailing "0" to show in sidebar. Use # instead. Signed-off-by: Marcin Skalski <skalskimarcin33@gmail.com>
Signed-off-by: Marcin Skalski <skalskimarcin33@gmail.com>
Signed-off-by: Marcin Skalski <skalskimarcin33@gmail.com>
Contributor
Author
- Revert OVERRIDE to .test_e2e = false - Add // 1 fallback to jq range() - Move inputs to env vars in shell - Document DOCKERHUB_PULL_CREDENTIAL dep Signed-off-by: Marcin Skalski <skalskimarcin33@gmail.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Motivation
E2E CI jobs all show as
e2e (0),e2e (1)etc. making it impossible to identify which job failed without clicking into each one.Implementation information
Added a
namefield to thee2ejob in_e2e.yamlusing matrix parameters. Names now include target, k8s version, arch, and optionally CNI plugin (when non-flannel) and sidecar flag.Example names:
e2e (default, v1.34.1-k3s1, amd64) / 0e2e (kubernetes, kind, amd64) / 0e2e (multizone, v1.34.1-k3s1, amd64, calico) / 0e2e (kubernetes, v1.34.1-k3s1, amd64, sidecar) / 0