diff options
author | Brad King <brad.king@kitware.com> | 2022-11-21 22:28:19 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-11-28 23:05:13 (GMT) |
commit | 16a5c36795cacd622078f3d31d36d9743b8bfdf7 (patch) | |
tree | f16ff764f04bddc7269c7f04b9354d2b2262c577 /.gitlab/ci/docker | |
parent | 9474d0238690ee032037e13f4317f8366f69538a (diff) | |
download | CMake-16a5c36795cacd622078f3d31d36d9743b8bfdf7.zip CMake-16a5c36795cacd622078f3d31d36d9743b8bfdf7.tar.gz CMake-16a5c36795cacd622078f3d31d36d9743b8bfdf7.tar.bz2 |
gitlab-ci: add nightly job testing NVHPC with Ninja on Linux
Diffstat (limited to '.gitlab/ci/docker')
-rw-r--r-- | .gitlab/ci/docker/nvhpc22.9/Dockerfile | 6 | ||||
-rwxr-xr-x | .gitlab/ci/docker/nvhpc22.9/install_deps.sh | 11 |
2 files changed, 17 insertions, 0 deletions
diff --git a/.gitlab/ci/docker/nvhpc22.9/Dockerfile b/.gitlab/ci/docker/nvhpc22.9/Dockerfile new file mode 100644 index 0000000..90e7d12 --- /dev/null +++ b/.gitlab/ci/docker/nvhpc22.9/Dockerfile @@ -0,0 +1,6 @@ +# https://catalog.ngc.nvidia.com/orgs/nvidia/containers/nvhpc/tags +FROM nvcr.io/nvidia/nvhpc:22.9-devel-cuda_multi-ubuntu22.04 +MAINTAINER Brad King <brad.king@kitware.com> + +COPY install_deps.sh /root/install_deps.sh +RUN sh /root/install_deps.sh diff --git a/.gitlab/ci/docker/nvhpc22.9/install_deps.sh b/.gitlab/ci/docker/nvhpc22.9/install_deps.sh new file mode 100755 index 0000000..51ee410 --- /dev/null +++ b/.gitlab/ci/docker/nvhpc22.9/install_deps.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +set -e + +apt-get update + +# Install development tools. +apt-get install -y \ + curl + +apt-get clean |