We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b95861 commit d8d951eCopy full SHA for d8d951e
1 file changed
.github/workflows/release.yml
@@ -10,11 +10,15 @@ on:
10
jobs:
11
build:
12
name: Build and Release
13
- runs-on: ubuntu-latest
+ runs-on: runs-on=${{ github.run_id }}/runner=gpu/tag=cudf-test-harness
14
container:
15
image: nvidia/cuda:13.1.0-devel-ubuntu24.04
16
17
steps:
18
+ - uses: runs-on/action@v2
19
+ with:
20
+ sccache: s3
21
+
22
- name: Install build tools
23
run: |
24
apt-get update
@@ -42,6 +46,9 @@ jobs:
42
46
cmake -S . -B build -G Ninja \
43
47
-DCMAKE_BUILD_TYPE=Release \
44
48
-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 \
45
52
-DBUILD_TEST_LIB=OFF
53
cmake --build build
54
0 commit comments