1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-06-02 07:20:47 +00:00
conky/tests/dockerfiles/Dockerfile.fedora-clang-7
Brenden Matthews 40a438be3e FreeBSD fixes, GitLab CI build improvements.
- use sccache for build caching
 - add coverage reports as build artifacts
 - add lcov-summary for coverage summary
 - clean up/refactor CI yaml

This resolves the FreeBSD part of #754.
2019-02-25 11:22:19 -05:00

16 lines
410 B
Docker

ARG IMAGE=registry.gitlab.com/brndnmtthws-oss/conky
FROM ${IMAGE}/builder/fedora-base:latest
RUN dnf -y -q install \
llvm \
clang \
libcxx-devel \
libcxxabi-devel \
&& dnf clean all \
&& curl -Ls https://rpm.nodesource.com/setup_11.x -o npm.sh \
&& bash npm.sh \
&& rm npm.sh \
&& dnf -y -q install npm \
&& npm install -g lcov-summary \
&& npm cache clean --force