Correct setup for infer (#6)
All checks were successful
Docker Builders / build-base-builder (push) Successful in 43s
Docker Builders / build-cpp-builder (push) Successful in 5m27s
Docker Builders / build-bigfoot-builder (push) Successful in 36m28s

Reviewed-on: #6
Co-authored-by: Romain BOULLARD <romain.boullard@protonmail.com>
Co-committed-by: Romain BOULLARD <romain.boullard@protonmail.com>
This commit was merged in pull request #6.
This commit is contained in:
2026-01-30 18:28:08 +00:00
committed by Romain BOULLARD
parent 6626e8eaf5
commit bc65f43221

View File

@@ -48,8 +48,8 @@ RUN apt-get update && apt-get install -y \
RUN VERSION=1.2.0; \ RUN VERSION=1.2.0; \
curl -sSL "https://github.com/facebook/infer/releases/download/v$VERSION/infer-linux-x86_64-v$VERSION.tar.xz" \ curl -sSL "https://github.com/facebook/infer/releases/download/v$VERSION/infer-linux-x86_64-v$VERSION.tar.xz" \
| sudo tar -C /opt -xJ && \ | tar -C /opt -xJ && \
sudo ln -s "/opt/infer-linux64-v$VERSION/bin/infer" /usr/local/bin/infer ln -s "/opt/infer-linux64-v$VERSION/bin/infer" /usr/bin/infer
# Install pipx and Conan # Install pipx and Conan
RUN pipx ensurepath \ RUN pipx ensurepath \