summaryrefslogtreecommitdiffstats
path: root/.gitlab/ci/docker/fedora31/install_deps.sh
blob: 978fdbd6c71fe3eecb6aaaafeabeb9743203af53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

# Install build requirements.
dnf install -y \
    openssl-devel

# Install development tools.
dnf install -y \
    clang-tools-extra \
    gcc-c++ \
    git-core

dnf clean all