-
Notifications
You must be signed in to change notification settings - Fork 738
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 each SYCL-CTS category separately #13421
Conversation
Workflow run: https://github.com/intel/llvm/actions/runs/8691345305 |
run: | | ||
./build-cts/bin/test_all --list-devices | ||
./build-cts/bin/test_accessor --list-devices |
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.
That won't work if that particular test has failed. I'd suggest to list devices/run each tests immediately after that test's build. WDYT?
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'd probably prefer not to mix the results of "build" and "run".
Updated this string - 79b10c4
https://github.com/intel/llvm/actions/runs/8723745986
#13421 reduced parellization when trying to avoid early build failouts. Use `ninja`'s `-k0` to do the same without undesired side effects.
#13421 reduced parellization when trying to avoid early build failouts. Use `ninja`'s `-k0` to do the same without undesired side effects. Also run individual tests in parallel as well.
No description provided.