-
Notifications
You must be signed in to change notification settings - Fork 787
[SYCL][E2E][CI] Disable std_array.cpp
at CI level
#18545
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
Conversation
The issue is specific to the post-commit CI using OneAPI compiler to build SYCL RT (see #18458). Ideally, we'd like to use `/Qno-intel-lib` during such build but OneAPI seems to have a bug related to that (reported internally). It will take an official release for it to reach this CI even after it's implemented, so we need to disable the test on that specific configuration only for the time being.
Running post-commit in https://github.com/intel/llvm/actions/runs/15119737545 |
@@ -120,6 +120,8 @@ jobs: | |||
target_devices: "level_zero:gpu" | |||
sycl_toolchain_archive: ${{ needs.build-win.outputs.artifact_archive_name }} | |||
cxx: icx | |||
# https://github.com/intel/llvm/issues/18458 | |||
env: "{'LIT_FILTER_OUT':'std_array.cpp'}" |
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, in the future we could consider adding a oneapi
lit feature or something so we could detect it inside lit, for one test its not worth it tho.
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.
assuming postcommit passes lgtm to merge from my side
The issue is specific to the post-commit CI using OneAPI compiler to build SYCL RT (see #18458). Ideally, we'd like to use
/Qno-intel-lib
during such build but OneAPI seems to have a bug related to that (reported internally). It will take an official release for it to reach this CI even after it's implemented, so we need to disable the test on that specific configuration only for the time being.