mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
8328449c1a
This is especially noticeable on local builds (less so on the github workers).
22 lines
711 B
Docker
22 lines
711 B
Docker
FROM toxchat/c-toxcore:sources AS sources
|
|
FROM ghcr.io/goblint/analyzer:latest
|
|
|
|
RUN apt-get update && \
|
|
DEBIAN_FRONTEND="noninteractive" apt-get install -y --no-install-recommends \
|
|
libsodium-dev \
|
|
tcc \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /work
|
|
COPY --from=sources /src/ /work/
|
|
|
|
COPY other/make_single_file /work/other/
|
|
|
|
RUN other/make_single_file -core auto_tests/tox_new_test.c other/docker/goblint/sodium.c > analysis.c
|
|
# Try compiling+linking just to make sure we have all the fake functions.
|
|
RUN tcc analysis.c
|
|
|
|
COPY other/docker/goblint/analysis.json /work/other/docker/goblint/
|
|
RUN /opt/goblint/analyzer/bin/goblint --conf /work/other/docker/goblint/analysis.json analysis.c
|