File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -141,9 +141,10 @@ jobs:
141
141
key : ${{ matrix.sycl-impl }}-ccache-${{ github.sha }}
142
142
restore-keys : |
143
143
${{ matrix.sycl-impl }}-ccache-
144
- # Use ccache's "depend mode" to work around DPC++ issue (see https://github.com/intel/llvm/issues/5260)
145
- # This requires compilation with -MD, which is enabled because we use the Ninja generator
146
- # Using this mode should not have any practical disadvantages
144
+ # Use ccache's "depend mode" to meet the GitHub Actions timeout of 6 hours with DPC++ compiler.
145
+ # This is a workaround for the fact that ccache's default mode (i.e. "preprocessor mode") introduces significant overhead in case of the cache miss.
146
+ # This requires compilation with -MD, which is enabled because we use the Ninja generator.
147
+ # Using this mode should not have any practical disadvantages.
147
148
- name : Set ccache environment variables
148
149
run : |
149
150
echo "CCACHE_DEPEND=1" >> "$GITHUB_ENV"
You can’t perform that action at this time.
0 commit comments