forked from rapidsai/cudf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
To fix rapidsai#15583 Change to run build in Rocky8 docker container Signed-off-by: Tim Liu <[email protected]>
- Loading branch information
Showing
3 changed files
with
67 additions
and
60 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# | ||
# Copyright (c) 2024, NVIDIA CORPORATION. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
### | ||
# Build the image for cudf development environment. | ||
# | ||
# Arguments: CUDA_VERSION=[11.X.Y, 12.X.Y], OS_RELEASE=[8, 9], TARGETPLATFORM=[linux/amd64, linux/amd64] | ||
# | ||
### | ||
ARG CUDA_VERSION=11.8.0 | ||
ARG OS_RELEASE=8 | ||
ARG TARGETPLATFORM=linux/amd64 | ||
# multi-platform build with: docker buildx build --platform linux/arm64,linux/amd64 <ARGS> on either amd64 or arm64 host | ||
# check available offcial arm-based docker images at https://hub.docker.com/r/nvidia/cuda/tags (OS/ARCH) | ||
FROM --platform=$TARGETPLATFORM nvidia/cuda:$CUDA_VERSION-devel-rockylinux$OS_RELEASE | ||
ARG TOOLSET_VERSION=11 | ||
### Install basic requirements | ||
RUN dnf install -y scl-utils gcc-toolset-${TOOLSET_VERSION} | ||
RUN dnf --enablerepo=powertools install -y git zlib-devel maven tar wget patch ninja-build | ||
## pre-create the CMAKE_INSTALL_PREFIX folder, set writable by any user for Jenkins | ||
RUN mkdir /usr/local/rapids && mkdir /rapids && chmod 777 /usr/local/rapids && chmod 777 /rapids | ||
|
||
# 3.22.3+: CUDA architecture 'native' support + flexible CMAKE_<LANG>_*_LAUNCHER for ccache | ||
ARG CMAKE_VERSION=3.26.4 | ||
# default x86_64 from x86 build, aarch64 cmake for arm build | ||
ARG CMAKE_ARCH=x86_64 | ||
RUN cd /usr/local && wget --quiet https://github.com/Kitware/CMake/releases/download/v${CMAKE_VERSION}/cmake-${CMAKE_VERSION}-linux-${CMAKE_ARCH}.tar.gz && \ | ||
tar zxf cmake-${CMAKE_VERSION}-linux-${CMAKE_ARCH}.tar.gz && \ | ||
rm cmake-${CMAKE_VERSION}-linux-${CMAKE_ARCH}.tar.gz | ||
ENV PATH /usr/local/cmake-${CMAKE_VERSION}-linux-${CMAKE_ARCH}/bin:$PATH | ||
|
||
# ccache for interactive builds | ||
ARG CCACHE_VERSION=4.6 | ||
RUN cd /tmp && wget --quiet https://github.com/ccache/ccache/releases/download/v${CCACHE_VERSION}/ccache-${CCACHE_VERSION}.tar.gz && \ | ||
tar zxf ccache-${CCACHE_VERSION}.tar.gz && \ | ||
rm ccache-${CCACHE_VERSION}.tar.gz && \ | ||
cd ccache-${CCACHE_VERSION} && \ | ||
mkdir build && \ | ||
cd build && \ | ||
scl enable gcc-toolset-${TOOLSET_VERSION} \ | ||
"cmake .. \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DZSTD_FROM_INTERNET=ON \ | ||
-DREDIS_STORAGE_BACKEND=OFF && \ | ||
cmake --build . --parallel 4 --target install" && \ | ||
cd ../.. && \ | ||
rm -rf ccache-${CCACHE_VERSION} | ||
|
||
# disable cuda container constraints to allow running w/ elder drivers on data-center GPUs | ||
ENV NVIDIA_DISABLE_REQUIRE="true" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters