summaryrefslogtreecommitdiffstats
path: root/.gitlab/ci/docker/cuda9.2/install_deps.sh
blob: 0dcb507e66bb3d1eae5f569bfb7610f8d2d7a81b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

set -e

apt-get update

# Update base packages.
apt-get install -y \
    libgnutls30 \
    libssl1.0.0 \
    openssl

# Install development tools.
apt-get install -y \
    g++ \
    clang-3.8 \
    curl \
    git

apt-get clean