diff options
author | Brad King <brad.king@kitware.com> | 2020-06-12 15:02:28 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2020-06-12 15:02:35 (GMT) |
commit | 3145264449cdc35aef14ff97011a65a782080758 (patch) | |
tree | 2bff95058c5e3678b171f2176641376c38bd4fee /.gitlab/ci/docker/cuda10.2/install_deps.sh | |
parent | 81ea5eb63753cbba8018d62fbb1d6218868ee8fa (diff) | |
parent | 2e7cefec03e580ea09c5479247d8d1991618e5ab (diff) | |
download | CMake-3145264449cdc35aef14ff97011a65a782080758.zip CMake-3145264449cdc35aef14ff97011a65a782080758.tar.gz CMake-3145264449cdc35aef14ff97011a65a782080758.tar.bz2 |
Merge topic 'gitlab-ci-ext-test-sets' into release-3.18
2e7cefec03 gitlab-ci: add a cuda10.2 builder
1a2961b895 Tests: add CUDA labels to tests which are affected by CUDA
2caa7502d5 ci: support running just a set of tests with external builders
26b4cbcf93 gitlab-ci: move Makefiles Linux tests to use the package
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !4877
Diffstat (limited to '.gitlab/ci/docker/cuda10.2/install_deps.sh')
-rwxr-xr-x | .gitlab/ci/docker/cuda10.2/install_deps.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.gitlab/ci/docker/cuda10.2/install_deps.sh b/.gitlab/ci/docker/cuda10.2/install_deps.sh new file mode 100755 index 0000000..0d57cd3 --- /dev/null +++ b/.gitlab/ci/docker/cuda10.2/install_deps.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +apt-get update + +# Install development tools. +apt-get install -y \ + g++ \ + curl \ + git + +apt-get clean |