-
Notifications
You must be signed in to change notification settings - Fork 8
Remove duplicated e2e_*_smoke_release
variants.
#110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -216,8 +216,8 @@ patch_aliases: | |
variant_tags: [ "release_all_agents_manually" ] | ||
task: ".*" | ||
- alias: "release" | ||
variant_tags: [ "release" ] | ||
task_tags: [ "image_release", "image_preflight", "openshift_bundles", "code_snippets" ] | ||
variant_tags: [ "release", "e2e_smoke_release_test_suite" ] | ||
task_tags: [ "image_release", "image_preflight", "openshift_bundles", "code_snippets", "patch-run" ] | ||
- alias: "smoke_test_release" | ||
variant_tags: [ "e2e_smoke_release_test_suite" ] | ||
task_tags: [ "patch-run" ] | ||
|
@@ -247,8 +247,8 @@ github_checks_aliases: | |
# Triggered on git tag | ||
git_tag_aliases: | ||
- git_tag: "^(\\d+\\.)?(\\d+\\.)?(\\d+)$" | ||
variant_tags: [ "release" ] | ||
task_tags: [ "image_release", "image_preflight", "openshift_bundles", "code_snippets" ] | ||
variant_tags: [ "release", "e2e_smoke_release_test_suite" ] | ||
task_tags: [ "image_release", "image_preflight", "openshift_bundles", "code_snippets", "patch-run" ] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why does this now include There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
tasks: | ||
- name: unit_tests_golang | ||
|
@@ -1389,9 +1389,10 @@ buildvariants: | |
|
||
- name: e2e_smoke | ||
display_name: e2e_smoke | ||
tags: [ "e2e_test_suite" ] | ||
tags: [ "e2e_test_suite", "e2e_smoke_release_test_suite" ] | ||
run_on: | ||
- ubuntu2204-large | ||
allowed_requesters: [ "patch", "github_tag" ] | ||
depends_on: | ||
- name: build_test_image | ||
variant: init_test_run | ||
|
@@ -1400,30 +1401,7 @@ buildvariants: | |
|
||
- name: e2e_static_smoke | ||
display_name: e2e_static_smoke | ||
tags: [ "e2e_test_suite" ] | ||
run_on: | ||
- ubuntu2204-large | ||
depends_on: | ||
- name: build_test_image | ||
variant: init_test_run | ||
tasks: | ||
- name: e2e_smoke_task_group | ||
|
||
- name: e2e_smoke_release | ||
display_name: e2e_smoke_release | ||
tags: [ "e2e_smoke_release_test_suite" ] | ||
run_on: | ||
- ubuntu2204-large | ||
allowed_requesters: [ "patch", "github_tag" ] | ||
depends_on: | ||
- name: build_test_image | ||
variant: init_test_run | ||
tasks: | ||
- name: e2e_smoke_task_group | ||
|
||
- name: e2e_static_smoke_release | ||
display_name: e2e_static_smoke_release | ||
tags: [ "e2e_smoke_release_test_suite" ] | ||
tags: [ "e2e_test_suite", "e2e_smoke_release_test_suite" ] | ||
run_on: | ||
- ubuntu2204-large | ||
allowed_requesters: [ "patch", "github_tag" ] | ||
|
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is my understanding correct that the release can be started without depending on successful e2e tests?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes,
e2e_smoke_release_test_suite
variant is only depending oninit_test_run
and nothing will block other release tasks to run