-
Notifications
You must be signed in to change notification settings - Fork 351
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: Tweak Intel compiler workflow #3354
Conversation
I don't think we need to worry about the Intel Classic Compiler. According to the compiler's warning message, it will be removed in the second half of 2023. At that time, we will switch to icpx. |
You are right, I shouldn't have touched |
.github/workflows/intel.yml
Outdated
env: {CXXFLAGS: "-Werror"} | ||
run: | | ||
export CCACHE_COMPRESS=1 | ||
export CCACHE_COMPRESSLEVEL=10 | ||
export CCACHE_MAXSIZE=40M | ||
export CCACHE_DEPEND=1 |
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.
Usually, CCACHE_DEPEND=1 should not be used. We use it in the sycl builds as a workaround because otherwise icpx -fsycl
does not work with ccache.
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.
Done.
There are conflicts must be resolved. |
No description provided.