ci: remove more .dockerfiles

This commit is contained in:
light7734 2025-09-21 14:39:07 +03:30
parent 154d6eacf4
commit 5cb331def9
Signed by: light7734
GPG key ID: 8C30176798F1A6BA
2 changed files with 0 additions and 51 deletions

View file

@ -1,9 +0,0 @@
FROM alpine:latest
RUN apk add --no-cache \
bash \
curl \
findutils \
git \
libc6-compat \
clang-extra-tools

View file

@ -1,42 +0,0 @@
FROM alpine:latest
RUN apk add --no-cache \
bash \
clang \
llvm \
cmake \
git \
make \
g++ \
python3 \
py3-pip \
mesa-dev \
mesa-gl \
pkgconf \
clang-extra-tools \
mold \
ninja
RUN pip install --no-cache-dir --break-system-packages conan gitpython \
&& conan profile detect
RUN clang --version \
&& conan --version \
&& pip --version \
&& cmake --version \
&& g++ --version \
&& clang --version \
&& clang-tidy --version \
&& ninja --version \
&& mold --version
RUN git clone 'https://git.light7734.com/light7734/light.git' \
&& cd light \
&& conan install . \
-c tools.system.package_manager:mode=install \
-c tools.cmake.cmaketoolchain:generator=Ninja \
-s build_type=Release \
-o enable_static_analysis=True \
-o use_mold=True \
--build=missing