Skip to content

Conversation

@joelanford
Copy link
Member

No description provided.

…operator CI jobs

Signed-off-by: Joe Lanford <joe.lanford@gmail.com>
@joelanford
Copy link
Member Author

/pj-rehearse auto-ack

@openshift-ci-robot
Copy link
Contributor

[REHEARSALNOTIFIER]
@joelanford: the pj-rehearse plugin accommodates running rehearsal tests for the changes in this PR. Expand 'Interacting with pj-rehearse' for usage details. The following rehearsable tests have been affected by this change:

Test name Repo Type Reason
pull-ci-openshift-platform-operators-release-4.14-images openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-release-4.14-lint openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-release-4.14-openshift-e2e-aws openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-release-4.14-unit openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-release-4.14-verify openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-main-images openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-main-lint openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-main-openshift-e2e-aws openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-main-unit openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-main-verify openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-release-4.15-images openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-release-4.15-lint openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-release-4.15-openshift-e2e-aws openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-release-4.15-unit openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-release-4.15-verify openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-release-4.13-e2e-aws-techpreview openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-release-4.13-e2e-aws-techpreview-operator openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-release-4.13-images openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-release-4.13-lint openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-release-4.13-unit openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-release-4.13-verify openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-release-4.16-images openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-release-4.16-lint openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-release-4.16-openshift-e2e-aws openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-release-4.16-unit openshift/platform-operators presubmit Ci-operator config changed
pull-ci-openshift-platform-operators-release-4.16-verify openshift/platform-operators presubmit Ci-operator config changed

Prior to this PR being merged, you will need to either run and acknowledge or opt to skip these rehearsals.

Interacting with pj-rehearse

Comment: /pj-rehearse to run up to 10 rehearsals
Comment: /pj-rehearse skip to opt-out of rehearsals
Comment: /pj-rehearse {test-name}, with each test separated by a space, to run one or more specific rehearsals
Comment: /pj-rehearse more to run up to 20 rehearsals
Comment: /pj-rehearse max to run up to 35 rehearsals
Comment: /pj-rehearse auto-ack to run up to 10 rehearsals, and add the rehearsals-ack label on success
Comment: /pj-rehearse abort to abort all active rehearsals

Once you are satisfied with the results of the rehearsals, comment: /pj-rehearse ack to unblock merge. When the rehearsals-ack label is present on your PR, merge will no longer be blocked by rehearsals.
If you would like the rehearsals-ack label removed, comment: /pj-rehearse reject to re-block merging.

@openshift-ci openshift-ci bot requested review from ncdc and tmshort October 13, 2023 20:35
@openshift-ci openshift-ci bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Oct 13, 2023
image_stream_tag:
name: release
namespace: openshift
tag: golang-1.18
Copy link
Contributor

Choose a reason for hiding this comment

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

Can you use this instead?

build_root:
  from_repository: true

Copy link
Contributor

Choose a reason for hiding this comment

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

Presumably, this will keep up with the value in go.mod, and thus, never need to be modified again?

Copy link
Contributor

Choose a reason for hiding this comment

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

Copy link
Contributor

Choose a reason for hiding this comment

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

From whatever branch is appropriate

Copy link
Contributor

Choose a reason for hiding this comment

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

Better than having to modify this repo...

Copy link
Member Author

Choose a reason for hiding this comment

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

I can't. Go 1.20 from the repo fails CI. And 1.18 also fails CI.

I have another PR open to switch to from_repository.

Copy link
Contributor

Choose a reason for hiding this comment

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

Gotcha.

Copy link
Member Author

Choose a reason for hiding this comment

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

Might need more surgery though. Maybe need to temporarily disable the lint test. Or force a go bump.

Copy link
Member Author

Choose a reason for hiding this comment

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

I figured out at least one problem. platform-operators tries to use setup-envtest@latest, which apparently now requires a more recent version of Go to work.

I've updated @awgreene's PR (openshift/platform-operators#92) to pin setup-envtest. And I've also opened a separate PR to switch CI tooling over to bingo (openshift/platform-operators#95) to make sure build tools actually stay pinned.

We may still need this PR because there is also an interplay between golangci-lint and the go compiler version that may require an intermediate bump to Go 1.19.

@tmshort
Copy link
Contributor

tmshort commented Oct 13, 2023

/lgtm

@openshift-ci openshift-ci bot added the lgtm Indicates that a PR is ready to be merged. label Oct 13, 2023
@openshift-ci
Copy link
Contributor

openshift-ci bot commented Oct 13, 2023

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: joelanford, tmshort

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@ncdc
Copy link
Contributor

ncdc commented Oct 13, 2023

What's going on with the rehearsal failures?

@openshift-ci
Copy link
Contributor

openshift-ci bot commented Oct 13, 2023

@joelanford: The following tests failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
ci/rehearse/openshift/platform-operators/main/unit df976c1 link unknown /pj-rehearse pull-ci-openshift-platform-operators-main-unit
ci/rehearse/openshift/platform-operators/release-4.14/unit df976c1 link unknown /pj-rehearse pull-ci-openshift-platform-operators-release-4.14-unit

Full PR test history. Your PR dashboard.

Details

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. I understand the commands that are listed here.

@joelanford joelanford closed this Oct 16, 2023
@joelanford joelanford deleted the platform-operators-go-1.19 branch October 16, 2023 19:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

approved Indicates a PR has been approved by an approver from all required OWNERS files. lgtm Indicates that a PR is ready to be merged.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants