Skip to content

Commit d8d951e

Browse files
committed
sccache
1 parent 4b95861 commit d8d951e

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,15 @@ on:
1010
jobs:
1111
build:
1212
name: Build and Release
13-
runs-on: ubuntu-latest
13+
runs-on: runs-on=${{ github.run_id }}/runner=gpu/tag=cudf-test-harness
1414
container:
1515
image: nvidia/cuda:13.1.0-devel-ubuntu24.04
1616

1717
steps:
18+
- uses: runs-on/action@v2
19+
with:
20+
sccache: s3
21+
1822
- name: Install build tools
1923
run: |
2024
apt-get update
@@ -42,6 +46,9 @@ jobs:
4246
cmake -S . -B build -G Ninja \
4347
-DCMAKE_BUILD_TYPE=Release \
4448
-DCMAKE_CUDA_COMPILER=/usr/local/cuda/bin/nvcc \
49+
-DCMAKE_C_COMPILER_LAUNCHER=sccache \
50+
-DCMAKE_CXX_COMPILER_LAUNCHER=sccache \
51+
-DCMAKE_CUDA_COMPILER_LAUNCHER=sccache \
4552
-DBUILD_TEST_LIB=OFF
4653
cmake --build build
4754

0 commit comments

Comments
 (0)