Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Utkarsh Ayachit
ParaView-Superbuild
Commits
376d20b2
Commit
376d20b2
authored
Jan 13, 2021
by
Ben Boeckel
⛰
Browse files
ci: install CUDA compilers into the container
parent
1e5f0a94
Changes
2
Hide whitespace changes
Inline
Side-by-side
.gitlab/ci/docker/centos7/Dockerfile
View file @
376d20b2
...
...
@@ -3,3 +3,6 @@ MAINTAINER Utkarsh Ayachit <utkarsh.ayachit@kitware.com>
COPY
install_deps.sh /root/install_deps.sh
RUN
sh /root/install_deps.sh
COPY
install_cuda.sh /root/install_cuda.sh
RUN
sh /root/install_cuda.sh
.gitlab/ci/docker/centos7/install_cuda.sh
0 → 100755
View file @
376d20b2
#!/bin/sh
# Install the nvidia repository.
yum-config-manager
--add-repo
https://developer.download.nvidia.com/compute/cuda/repos/rhel7/x86_64/cuda-rhel7.repo
# Install CUDA toolchains.
yum
install
-y
\
cuda-compiler-11-2 cuda-cudart-devel-11-2 cuda-toolkit-11-2
yum clean all
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment