Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ci/check-style
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set -e
# Exit on pipe fail
set -o pipefail

CLANGFORMAT=${CLANGFORMAT:-clang-format-18}
CLANGFORMAT=${CLANGFORMAT:-clang-format-20}
RUSTFMT=${RUSTFMT:-rustfmt}

command -v git >/dev/null 2>&1 || { echo >&2 "git is missing"; exit 1; }
Expand Down
2 changes: 1 addition & 1 deletion .containerversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
49
50
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ ARG TARGETARCH

RUN apt-get update && apt-get upgrade -y && apt-get install -y wget nano rsync curl gnupg2 jq unzip bzip2 xz-utils

# for clang-*-15, see https://apt.llvm.org/
RUN echo "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-18 main" >> /etc/apt/sources.list && \
echo "deb-src http://apt.llvm.org/jammy/ llvm-toolchain-jammy-18 main" >> /etc/apt/sources.list && \
# for clang-*-20, see https://apt.llvm.org/. Stay in sync with rust compiler
RUN echo "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-20 main" >> /etc/apt/sources.list && \
echo "deb-src http://apt.llvm.org/jammy/ llvm-toolchain-jammy-20 main" >> /etc/apt/sources.list && \
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -

# Install gcc8-arm-none-eabi
Expand All @@ -48,7 +48,7 @@ RUN if [ "${TARGETPLATFORM}" = "linux/arm64" ]; then \
# Tools for building
RUN apt-get update && apt-get install -y \
make \
llvm-18 \
llvm-20 \
gcc-10 \
binutils \
valgrind \
Expand Down Expand Up @@ -80,8 +80,8 @@ RUN update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-10 100
RUN apt-get update && apt-get install -y \
python3 \
python3-pip \
clang-format-18 \
clang-tidy-18
clang-format-20 \
clang-tidy-20

RUN python3 -m pip install --upgrade pip

Expand Down
Loading