Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2e6631f

Browse files
ci(cuda-13): clean git cache (#2132)
git cache was saving stark-backend build with cuda12.9 which doesn't work on new runner images with cuda13.0 closes INT-4948
1 parent 628596b commit 2e6631f

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/base-tests.cuda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ env:
2727
jobs:
2828
tests-cuda:
2929
runs-on:
30-
- runs-on=${{ github.run_id }}-base-tests-cuda-${{ github.run_attempt }}/family=g6+g6e/image=ubuntu24-gpu-x64/extras=s3-cache
30+
- runs-on=${{ github.run_id }}-base-tests-cuda-${{ github.run_attempt }}/runner=test-gpu-nvidia
3131

3232
steps:
3333
- uses: runs-on/action@v2

scripts/bin/run_clang_tidy.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,12 @@ fn run_clang_tidy_single(
4848
.arg("-D__CUDACC__")
4949
.arg(format!("-I{}/include", cuda_path));
5050

51+
// Check if CCCL directory exists (CUDA 13.0+)
52+
let cccl_path = PathBuf::from(cuda_path).join("include").join("cccl");
53+
if cccl_path.exists() {
54+
cmd.arg(format!("-I{}", cccl_path.display()));
55+
}
56+
5157
for include in includes {
5258
cmd.arg(format!("-I{}", include));
5359
}

0 commit comments

Comments
 (0)