1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-15 20:46:37 +08:00

ci: add a Docker container for building CMake

Since we're starting with just `clang-tidy`, external deps are not
included right now.
This commit is contained in:
Ben Boeckel
2020-04-08 09:58:48 -04:00
parent 3ac24a8a6e
commit 68903ae238
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
FROM fedora:31
MAINTAINER Ben Boeckel <ben.boeckel@kitware.com>
COPY install_deps.sh /root/install_deps.sh
RUN sh /root/install_deps.sh

View File

@@ -0,0 +1,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