Commit 08c6bcd 1 parent 706f873 commit 08c6bcd Copy full SHA for 08c6bcd
File tree 5 files changed +13
-51
lines changed
5 files changed +13
-51
lines changed Original file line number Diff line number Diff line change 39
39
GTest_SOURCE : BUNDLED
40
40
simdjson_SOURCE : BUNDLED
41
41
xsimd_SOURCE : BUNDLED
42
- CUDA_VERSION : " 12.4 "
42
+ CUDA_VERSION : " 12.8 "
43
43
USE_CLANG : " ${{ inputs.use-clang && 'true' || 'false' }}"
44
44
steps :
45
45
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -17,13 +17,13 @@ FROM $image
17
17
18
18
COPY scripts/setup-helper-functions.sh /
19
19
COPY scripts/setup-adapters.sh /
20
- COPY scripts/setup-cuda .sh /
20
+ COPY scripts/setup-centos9 .sh /
21
21
RUN mkdir build && \
22
22
( \
23
23
cd build && \
24
24
source /opt/rh/gcc-toolset-12/enable && \
25
25
bash /setup-adapters.sh && \
26
- bash /setup-cuda .sh \
26
+ bash /setup-centos9 .sh install_cuda \
27
27
) && \
28
28
rm -rf build && dnf remove -y conda && dnf clean all
29
29
Original file line number Diff line number Diff line change @@ -232,7 +232,11 @@ function install_cuda {
232
232
# See https://developer.nvidia.com/cuda-downloads
233
233
dnf config-manager --add-repo https://developer.download.nvidia.com/compute/cuda/repos/rhel9/x86_64/cuda-rhel9.repo
234
234
local dashed=" $( echo $1 | tr ' .' ' -' ) "
235
- dnf install -y cuda-nvcc-$dashed cuda-cudart-devel-$dashed cuda-nvrtc-devel-$dashed cuda-driver-devel-$dashed
235
+ dnf install -y \
236
+ cuda-compat-$dashed \
237
+ cuda-driver-devel-$dashed \
238
+ cuda-minimal-build-$dashed \
239
+ cuda-nvrtc-devel-$dashed
236
240
}
237
241
238
242
function install_velox_deps {
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -291,7 +291,11 @@ function install_cuda {
291
291
$SUDO apt update
292
292
fi
293
293
local dashed=" $( echo $1 | tr ' .' ' -' ) "
294
- $SUDO apt install -y cuda-nvcc-$dashed cuda-cudart-dev-$dashed cuda-nvrtc-dev-$dashed cuda-driver-dev-$dashed
294
+ $SUDO apt install -y \
295
+ cuda-compat-$dashed \
296
+ cuda-driver-dev-$dashed \
297
+ cuda-minimal-build-$dashed \
298
+ cuda-nvrtc-dev-$dashed
295
299
}
296
300
297
301
function install_velox_deps {
You can’t perform that action at this time.
0 commit comments