-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
[CI:BUILD] Cirrus: Fix GraphQL ownerRepository:null error #17383
[CI:BUILD] Cirrus: Fix GraphQL ownerRepository:null error #17383
Conversation
This reverts commit 6b3073f. Signed-off-by: Chris Evich <[email protected]>
aa2a033
to
96f029a
Compare
96f029a
to
92c7b5c
Compare
A semantic change to a Cirrus-CI GraphQL API parameter caused a unit-test to fail (as it should have) with the error: ``` Query result did not pass filter '.data.ownerRepository.cronSettings': '{"data":{"ownerRepository":null}}' ``` As per Cirrus-support, a change was introduced in schema affecting certain fields that were incorrectly marked Nullable. They indicated the `platform` field was set incorrectly, and should use the value `github`. * Fix the platform field's value to `github` instead of `LINUX`. * Change the unit-test to only execute as part of the 'main' cirrus-cron job so it cannot impact PRs. Signed-off-by: Chris Evich <[email protected]>
92c7b5c
to
50f72fe
Compare
@containers/podman-maintainers PTAL. This fixes the underlying problem & test which lead to the big CI-SNAFU on Monday. Without this PR merged, all our cirrus-cron monitoring jobs fail. |
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.
LGTM
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.
/lgtm
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: cevich, vrothberg The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
These tests don't need to run for every PR, and the thing they're testing never runs on any branch except `main`. Stop them from running on this branch. In case someone decides to try and use them, also fix the errant API call which triggered the original problem. Ref: containers#17383 Signed-off-by: Chris Evich <[email protected]>
/cherry-pick v4.4 |
@lsm5: #17383 failed to apply on top of branch "v4.4":
In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
ah I see it's cherrypicked already. my bad. |
A semantic change to a Cirrus-CI GraphQL API parameter caused a
unit-test to fail (as it should have) with the error:
As per Cirrus-support, a change was introduced in schema affecting certain
fields that were incorrectly marked Nullable. They indicated the
platform
field was set incorrectly, and should use the value
github
.github
instead ofLINUX
.job so it cannot impact PRs.
Does this PR introduce a user-facing change?