-
Notifications
You must be signed in to change notification settings - Fork 320
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
grew windows CI timeout #2511
grew windows CI timeout #2511
Conversation
with windows-2022 I encountered this error in step "Install onnx-mlir" in Windows-CI.yml
any suggestions how to overcome this are welcome |
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.
I guess the reason is the CI directly used cached llvm with windows-2022? However, that cached llvm was built with windows-2019. Building llvm from scratch with windows-2022 in this PR might help.
8e2e00d
to
76cd1e3
Compare
ok, I changed
it looks like llvm-min-tblgen.exe fails but I don't know what goes wrong or how to overcome that |
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.
Just found the latest llvm is still using windows-2019 in its CI: https://github.com/llvm/llvm-project/blob/bce6c53464c115f5f83a57284e409b1db8c2b03f/.github/workflows/llvm-project-tests.yml#L40-L42 and so it might not be compatible with newer windows-2022. Sorry I should confirm it earlier and thank you for trying it out. I guess the least thing we can do right now is simply increasing the timeout a bit?
76cd1e3
to
704b680
Compare
no problem
ok, I reverted the vmImage upgrade from this PR - please approve if you agree with the change I would love if you can find another solution to make the Windows CI run faster - it is typically the slowest of the CI pipelines and therefore slows down onnx-mlir development |
see @jwchen advice in issue onnx#2481 Signed-off-by: Soren Lassen <[email protected]>
Signed-off-by: Soren Lassen <[email protected]>
550a5c2
to
922c521
Compare
Jenkins Linux amd64 Build #12689 [push] grew windows CI timeout ... started at 14:05 |
Jenkins Linux s390x Build #12712 [push] grew windows CI timeout ... started at 15:05 |
Jenkins Linux ppc64le Build #11705 [push] grew windows CI timeout ... started at 15:14 |
Jenkins Linux amd64 Build #12689 [push] grew windows CI timeout ... failed after 1 hr 9 min |
Jenkins Linux s390x Build #12712 [push] grew windows CI timeout ... aborted after 1 hr 29 min |
Jenkins Linux ppc64le Build #11705 [push] grew windows CI timeout ... aborted after 1 hr 29 min |
because the latest LLVM bump in PR onnx#2545 exceeded the 4.5h timeout see PR onnx#2511 for more context Signed-off-by: Soren Lassen <[email protected]>
because the latest LLVM bump in PR #2545 exceeded the 4.5h timeout see PR #2511 for more context Signed-off-by: Soren Lassen <[email protected]> Co-authored-by: Alexandre Eichenberger <[email protected]>
see @jcwchen advice in issue #2481