pulled by conan
Some checks failed
Docker Builders / build-base-builder (push) Successful in 37s
Docker Builders / build-cpp-builder (push) Failing after 14s

This commit is contained in:
2026-04-26 15:56:25 +02:00
parent a81698a196
commit e93ea347a5

View File

@@ -29,16 +29,6 @@ RUN VERSION=1.2.0; \
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 \
&& cd /tmp/mold \
&& cmake . -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_COMPILER=clang++ \
-B build \
&& cmake --build build -j$(nproc) \
&& cmake --install build \
&& rm -rf /tmp/mold
# Configure Conan with custom profiles and remote
RUN conan config install https://git.romainboullard.com/BigfootDev/ConanProfiles.git --args="--branch main" \
&& conan remote add bigfootpackages https://conan.romainboullard.com/artifactory/api/conan/BigfootPackages \