Compare commits

..

19 Commits

Author SHA1 Message Date
1e14c1d8ae reduce amount of installed packages
All checks were successful
Docker Builders / build-base-builder (push) Successful in 5s
Docker Builders / build-cpp-builder (push) Successful in 6m36s
2026-04-15 17:57:23 +02:00
18b6b7362b typo
Some checks failed
Docker Builders / build-base-builder (push) Successful in 4s
Docker Builders / build-cpp-builder (push) Failing after 1m55s
2026-04-15 17:53:14 +02:00
86f522b821 libstdc++
Some checks failed
Docker Builders / build-base-builder (push) Successful in 4s
Docker Builders / build-cpp-builder (push) Failing after 7s
2026-04-15 17:51:43 +02:00
3b4f414835 libstdc++
Some checks failed
Docker Builders / build-base-builder (push) Successful in 5s
Docker Builders / build-cpp-builder (push) Failing after 9s
2026-04-15 17:49:47 +02:00
4fd84d36fc build&push
Some checks failed
Docker Builders / build-base-builder (push) Successful in 6s
Docker Builders / build-cpp-builder (push) Failing after 1m34s
2026-04-15 17:40:18 +02:00
4e1c82556e checkout
All checks were successful
Docker Builders / build-base-builder (push) Successful in 33s
2026-04-15 17:34:38 +02:00
bde728b922 test
Some checks failed
Docker Builders / build-base-builder (push) Failing after 1s
2026-04-15 17:30:20 +02:00
bfe69fce7f test volumes
Some checks failed
Docker Builders / build-base-builder (push) Failing after 0s
2026-04-15 17:25:58 +02:00
d77c8d5ddb typo
Some checks failed
Docker Builders / build-base-builder (push) Failing after 1s
2026-04-15 17:22:28 +02:00
90fb27ff07 test without actions 2026-04-15 17:21:31 +02:00
f01319468c install node
Some checks failed
Docker Builders / build-base-builder (push) Failing after 2s
2026-04-15 17:13:43 +02:00
4944e78847 test
Some checks failed
Docker Builders / build-base-builder (push) Failing after 6s
2026-04-15 17:11:24 +02:00
e49d1bace9 update
Some checks failed
Docker Builders / build-base-builder (push) Waiting to run
Docker Builders / build-cpp-builder (push) Has been cancelled
2026-04-15 17:08:26 +02:00
125f32bbf7 downgrade test
Some checks failed
Docker Builders / build-base-builder (push) Waiting to run
Docker Builders / build-cpp-builder (push) Has been cancelled
2026-04-15 16:59:51 +02:00
abc646e679 no dind
Some checks failed
Docker Builders / build-base-builder (push) Waiting to run
Docker Builders / build-cpp-builder (push) Has been cancelled
2026-04-15 16:51:08 +02:00
1d7f247895 dind ?
Some checks failed
Docker Builders / build-base-builder (push) Failing after 12m37s
Docker Builders / build-cpp-builder (push) Has been cancelled
2026-04-15 12:25:08 +02:00
04d3bc7f75 update actions
Some checks failed
Docker Builders / build-base-builder (push) Waiting to run
Docker Builders / build-cpp-builder (push) Has been cancelled
2026-04-15 11:08:16 +02:00
cbb50e25a4 Fix CI
Some checks failed
Docker Builders / build-base-builder (push) Waiting to run
Docker Builders / build-cpp-builder (push) Has been cancelled
2026-04-15 10:59:41 +02:00
8e781406e0 SDK update 2026-04-15 10:55:20 +02:00
3 changed files with 20 additions and 11 deletions

View File

@@ -27,7 +27,7 @@ jobs:
- name: Build
run: |
docker build -t ${{ env.BASE_BUILDER_TAG }}:${{ env.BRANCH_NAME_LOWER }} --no-cache ./Linux/BaseBuilder
docker build -t ${{ env.BASE_BUILDER_TAG }}:${{ env.BRANCH_NAME_LOWER }} ./Linux/BaseBuilder
- name: Login to registry
run: |
@@ -54,7 +54,7 @@ jobs:
- name: Build
run: |
docker build -t ${{ env.CPP_BUILDER_TAG }}:${{ env.BRANCH_NAME_LOWER }} --build-arg BASE_BUILDER=${{ env.BASE_BUILDER_TAG }}:${{ env.BRANCH_NAME_LOWER }} --no-cache ./Linux/CPPBuilder
docker build -t ${{ env.CPP_BUILDER_TAG }}:${{ env.BRANCH_NAME_LOWER }} --build-arg BASE_BUILDER=${{ env.BASE_BUILDER_TAG }}:${{ env.BRANCH_NAME_LOWER }} ./Linux/CPPBuilder
- name: Login to registry
run: |

View File

@@ -20,4 +20,5 @@ RUN apt-get update && apt-get install -y \
lsb-release \
software-properties-common \
gnupg \
python3
python3 \
&& rm -rf /var/lib/apt/lists/*

View File

@@ -16,18 +16,26 @@ RUN apt-get update && apt-get install -y \
wget \
lsb-release \
software-properties-common \
pipx
pipx \
&& rm -rf /var/lib/apt/lists/*
ENV PATH="/root/.local/bin:${PATH}"
# Install LLVM 22 and symlink tools
# Install LLVM 20 and symlink tools
RUN wget https://apt.llvm.org/llvm.sh -O /tmp/llvm.sh \
&& chmod +x /tmp/llvm.sh \
&& /tmp/llvm.sh 22 all \
&& for f in /usr/lib/llvm-22/bin/*; do \
ln -sf "$f" "/usr/local/bin/$(basename "$f")"; \
done \
&& rm -f /tmp/llvm.sh*
&& /tmp/llvm.sh 20 all \
&& ln -sf /usr/bin/clang-20 /usr/bin/clang \
&& ln -sf /usr/bin/clang++-20 /usr/bin/clang++ \
&& ln -sf /usr/bin/llvm-profdata-20 /usr/bin/llvm-profdata \
&& ln -sf /usr/bin/llvm-cov-20 /usr/bin/llvm-cov \
&& ln -sf /usr/bin/clang-format-20 /usr/bin/clang-format \
&& ln -sf /usr/bin/clang-tidy-20 /usr/bin/clang-tidy \
&& ln -sf /usr/bin/run-clang-tidy-20 /usr/bin/run-clang-tidy \
&& ln -sf /usr/bin/llvm-ar-20 /usr/bin/llvm-ar \
&& ln -sf /usr/bin/llvm-nm-20 /usr/bin/llvm-nm \
&& ln -sf /usr/bin/llvm-ranlib-20 /usr/bin/llvm-ranlib \
&& rm -f /tmp/llvm.sh
RUN VERSION=1.2.0; \
curl -sSL "https://github.com/facebook/infer/releases/download/v$VERSION/infer-linux-x86_64-v$VERSION.tar.xz" \
@@ -39,7 +47,7 @@ RUN pipx install conan \
&& pipx install gcovr
# Build and install mold
RUN git clone --branch v2.41.0 https://github.com/rui314/mold.git /tmp/mold \
RUN git clone --branch v2.40.4 https://github.com/rui314/mold.git /tmp/mold \
&& cd /tmp/mold \
&& cmake . -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_COMPILER=clang++ \