-
Notifications
You must be signed in to change notification settings - Fork 303
Update job names to fix integration test #4985
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
base: main
Are you sure you want to change the base?
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 |
|---|---|---|
|
|
@@ -77,10 +77,10 @@ periodics: | |
| interval: 12h | ||
| labels: | ||
| job-release: "4.10" | ||
| name: periodic-ci-openshift-release-master-ci-4.10-e2e-aws-ovn-upgrade | ||
| name: periodic-ci-openshift-release-main-ci-4.10-e2e-aws-ovn-upgrade | ||
|
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. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "Checking IsSpecialInformingJobOnTestGrid prefixes..."
rg -n -C2 'IsSpecialInformingJobOnTestGrid|periodic-ci-openshift-release-(master|main)-(ci|nightly|okd)-' pkg/util/testgrid.go
echo
echo "Checking integration fixtures now use main-based names..."
rg -n -C1 'periodic-ci-openshift-release-main-ci-4\.10-(e2e-aws-ovn-upgrade|upgrade-from-stable-4\.9-e2e-aws-ovn-upgrade)' test/integration/testgrid-config-generator
echo
echo "Expected result:"
echo "- Matcher should include main prefixes (ideally keep master + main for backward compatibility)."
echo "- Fixtures should consistently reference main names."Repository: openshift/ci-tools Length of output: 5510 🏁 Script executed: #!/bin/bash
set -euo pipefail
# Get the complete list of testGridInformingPrefixes to see if main is included anywhere
cat pkg/util/testgrid.goRepository: openshift/ci-tools Length of output: 1069 Update The renamed jobs at lines 80 and 86 use Add the corresponding
Also applies to: 86-86 🤖 Prompt for AI Agents |
||
| - agent: kubernetes | ||
| decorate: true | ||
| interval: 12h | ||
| labels: | ||
| job-release: "4.10" | ||
| name: periodic-ci-openshift-release-master-ci-4.10-upgrade-from-stable-4.9-e2e-aws-ovn-upgrade | ||
| name: periodic-ci-openshift-release-main-ci-4.10-upgrade-from-stable-4.9-e2e-aws-ovn-upgrade | ||
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.
The file name still references
master(org-repo-master-periodics.yaml) but the job names inside were updated to...-main-.... Consider renaming the file toorg-repo-main-periodics.yamlto keep the test fixture self-descriptive and avoid future confusion when updating integration data.