-
Notifications
You must be signed in to change notification settings - Fork 168
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
[ppc64le] Remove P8 and P9 hack so tests pass for Power10 #3887
Conversation
Hi @mtarsel. Thanks for your PR. I'm waiting for a coreos member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. 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-sigs/prow repository. |
/ok-to-test |
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.
This looks sane to me. Though I'm still confused why you were hitting issues with this. Those paths shouldn't have triggered for you at all. Probably worth digging into that a bit more to understand better what went wrong there.
But anyway, I do also think that these patches are no longer relevant now. They predate the pipeline rework from a time when we were using a separate ppc64le OCP cluster, which is what I think was what was using RHEL7. Our current builders all use FCOS, so this will never trigger.
cc @ravanelli in case I'm missing something
I think we are ok in removing it, the main reason in the past was indeed the need for |
LGTM. Can you fix the lint issues in the file you touched? |
sure thing. if im reading it correctly, it looks like I need to just remove the unused "unix" import |
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.
Please remove this merge branch. And squash the commits for the same file in only one commit, you can even revert the commit that added these changes.
@@ -51,8 +51,6 @@ import ( | |||
"github.com/coreos/coreos-assembler/mantle/system" | |||
"github.com/coreos/coreos-assembler/mantle/system/exec" | |||
"github.com/pkg/errors" | |||
|
|||
"golang.org/x/sys/unix" |
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.
It should be part of the first commit, squash the commits to have only one commit.
1bf9fad
to
7f06c1d
Compare
008e04c and a6d7bbb added and used the libguestfs-ppc64le-wrapper.sh in order to address some failing tests on ppc64le. Using a Power10 machine with KVM enabled, tests are passing with this script removed. There was a successful test run with: cosa kola run --tag '!reprovision' Signed-off-by: Mick Tarsel <mtarsel@gmail.com>
Im not sure why this issue was closed. I did a Sync Fork from the github website and that added the merge commit to this PR however when I did a pull on my branch locally, the merge commit was not present. I did a reset and I guess that automatically closed this. The branch should be clean now. Reopening and hoping github picks up the same branch |
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 and good riddance! 🎉
008e04c and a6d7bbb added and used the
libguestfs-ppc64le-wrapper.sh
in order to address some failing tests on ppc64le. Using a Power10 machine with KVM enabled, tests are passing with this script removed. There was a successful test run with:cosa kola run --tag '!reprovision'
If we are going to use p10 for CI going forward, I think we can remove this script entirely. Otherwise, we will have to distinguish between p10 and not p10 or possibly implement a better way than relying on using
uname -r
output searching forel7
.Related to issue #2473