summaryrefslogtreecommitdiffstats
path: root/.gitlab/ci/docker/cuda11.6/install_deps.sh
blob: cb18c83bd393f2c751cff6efabf9448eba5b5f4c (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

# Install dependency without interaction.
env DEBIAN_FRONTEND=noninteractive \
    TZ=America/New_York \
  apt-get install -y \
    tzdata

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

apt-get clean