mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-17 18:45:10 +00:00
40a438be3e
- 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.
16 lines
410 B
Docker
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
|