Compare commits

...

7 Commits

Author SHA1 Message Date
c7a7148582 Merge branch 'main' of https://git.romainboullard.com/BigfootDev/DockerImages into Development
All checks were successful
Docker Builders / build-base-builder (push) Successful in 25m39s
Docker Builders / build-cpp-builder (push) Successful in 1h11m8s
2026-04-16 12:23:55 +02:00
5169d111d6 stale caches
All checks were successful
Docker Builders / build-base-builder (push) Successful in 27m55s
Docker Builders / build-cpp-builder (push) Successful in 42m0s
2026-04-16 11:07:49 +02:00
974101c5a2 apt clean
Some checks failed
Docker Builders / build-base-builder (push) Failing after 2m25s
Docker Builders / build-cpp-builder (push) Has been skipped
2026-04-16 10:59:39 +02:00
b6049da822 update llvm
Some checks failed
Docker Builders / build-base-builder (push) Successful in 5s
Docker Builders / build-cpp-builder (push) Failing after 5m8s
2026-04-16 10:47:33 +02:00
c0719d61cc mold update
All checks were successful
Docker Builders / build-base-builder (push) Successful in 5m21s
Docker Builders / build-cpp-builder (push) Successful in 22m16s
2026-04-16 10:18:08 +02:00
00608711ae VulkanSDKUpdate (#10)
All checks were successful
Docker Builders / build-base-builder (push) Successful in 3s
Docker Builders / build-cpp-builder (push) Successful in 4s
Reviewed-on: #10
Co-authored-by: Romain BOULLARD <romain.boullard@protonmail.com>
Co-committed-by: Romain BOULLARD <romain.boullard@protonmail.com>
2026-04-15 16:18:14 +00:00
1200a1377f Vulkan SDK Update (#9)
Reviewed-on: #9
Co-authored-by: Romain BOULLARD <romain.boullard@protonmail.com>
Co-committed-by: Romain BOULLARD <romain.boullard@protonmail.com>
2026-04-15 08:58:01 +00:00
3 changed files with 11 additions and 20 deletions

View File

@@ -27,7 +27,7 @@ jobs:
- name: Build
run: |
docker build -t ${{ env.BASE_BUILDER_TAG }}:${{ env.BRANCH_NAME_LOWER }} ./Linux/BaseBuilder
docker build -t ${{ env.BASE_BUILDER_TAG }}:${{ env.BRANCH_NAME_LOWER }} --no-cache ./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 }} ./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 }} --no-cache ./Linux/CPPBuilder
- name: Login to registry
run: |

View File

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

View File

@@ -16,26 +16,18 @@ RUN apt-get update && apt-get install -y \
wget \
lsb-release \
software-properties-common \
pipx \
&& rm -rf /var/lib/apt/lists/*
pipx
ENV PATH="/root/.local/bin:${PATH}"
# Install LLVM 20 and symlink tools
# Install LLVM 22 and symlink tools
RUN wget https://apt.llvm.org/llvm.sh -O /tmp/llvm.sh \
&& chmod +x /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
&& /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*
RUN VERSION=1.2.0; \
curl -sSL "https://github.com/facebook/infer/releases/download/v$VERSION/infer-linux-x86_64-v$VERSION.tar.xz" \
@@ -47,7 +39,7 @@ RUN pipx install conan \
&& pipx install gcovr
# Build and install mold
RUN git clone --branch v2.40.4 https://github.com/rui314/mold.git /tmp/mold \
RUN git clone --branch v2.41.0 https://github.com/rui314/mold.git /tmp/mold \
&& cd /tmp/mold \
&& cmake . -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_COMPILER=clang++ \