All checks were successful
Tests / Clang total: 3339, passed: 3339
Clang |Total|New|Outstanding|Fixed|Trend
|:-:|:-:|:-:|:-:|:-:
|0|0|0|0|:clap:
Tests / 64 bit versions total: 3339, passed: 3339
Tests / Debug total: 3337, passed: 3337
Tests / SIMD fallback total: 3339, passed: 3339
Tests / Release [gcc] total: 3339, passed: 3339
GNU C Compiler (gcc) |Total|New|Outstanding|Fixed|Trend
|:-:|:-:|:-:|:-:|:-:
|0|0|0|0|:clap:
Tests / Release [gcc,aarch64] total: 2482, passed: 2482
Tests / Coverage total: 2511, passed: 2511
Code Coverage #### Project Overview
No changes detected, that affect the code coverage.
* Line Coverage: 99.09% (1846/1863)
* Branch Coverage: 67.65% (1447/2139)
* Complexity Density: 0.00
* Lines of Code: 1863
#### Quality Gates Summary
Output truncated.
weaselab/conflict-set/pipeline/head This commit looks good
53 lines
1.4 KiB
Docker
53 lines
1.4 KiB
Docker
FROM ubuntu:rolling
|
|
|
|
WORKDIR /tmp
|
|
ENV HOME=/tmp
|
|
RUN chmod -R 777 /tmp
|
|
|
|
# Install apt dependencies
|
|
RUN apt-get update
|
|
RUN apt-get upgrade -y
|
|
RUN TZ=America/Los_Angeles DEBIAN_FRONTEND=noninteractive apt-get install -y \
|
|
binutils-aarch64-linux-gnu \
|
|
build-essential \
|
|
ccache \
|
|
clang \
|
|
cmake \
|
|
curl \
|
|
doxygen \
|
|
file \
|
|
g++-aarch64-linux-gnu \
|
|
gcovr \
|
|
git \
|
|
gperf \
|
|
graphviz \
|
|
libc6-dbg \
|
|
ninja-build \
|
|
pre-commit \
|
|
python3-requests \
|
|
qemu-user \
|
|
rpm \
|
|
texlive-full \
|
|
zstd
|
|
|
|
# Install recent valgrind from source
|
|
RUN curl -Ls https://sourceware.org/pub/valgrind/valgrind-3.22.0.tar.bz2 -o valgrind.tar.bz2 && \
|
|
echo "c811db5add2c5f729944caf47c4e7a65dcaabb9461e472b578765dd7bf6d2d4c valgrind.tar.bz2" > valgrind-sha.txt && \
|
|
sha256sum --quiet -c valgrind-sha.txt && \
|
|
mkdir valgrind && \
|
|
tar --strip-components 1 --no-same-owner --no-same-permissions --directory valgrind -xjf valgrind.tar.bz2 && \
|
|
cd valgrind && \
|
|
./configure --enable-only64bit --enable-lto && \
|
|
make -j`nproc` && \
|
|
make install && \
|
|
cd .. && \
|
|
rm -rf /tmp/*
|
|
|
|
# Set after building valgrind, which doesn't build with clang for some reason
|
|
ENV CC=clang
|
|
ENV CXX=clang++
|
|
|
|
# Try to have all the pre-commit hooks we'll need already initialized
|
|
COPY .pre-commit-config.yaml /tmp/
|
|
RUN git init && pre-commit install-hooks
|