From 31ac125053c98e07593263f0e42895034e7f142c Mon Sep 17 00:00:00 2001 From: Romain BOULLARD Date: Fri, 23 Jan 2026 18:07:03 +0100 Subject: [PATCH] test --- .gitea/workflows/ci.yaml | 3 --- Linux/CPPBuilder/Dockerfile | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index d36b766..308a1e9 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -71,9 +71,6 @@ jobs: username: ${{ secrets.CI_USERNAME }} password: ${{ secrets.CI_TOKEN }} - - name: echo branhc name - run : echo ${BRANCH_NAME} - - name: Build Builder run: docker build -t "$CPP_BUILDER_TAG" ./Linux/CPPBuilder --build-arg BASE_BUILDER="$BASE_BUILDER_TAG" --build-arg CONAN_PROFILE_BRANCH="${BRANCH_NAME}" diff --git a/Linux/CPPBuilder/Dockerfile b/Linux/CPPBuilder/Dockerfile index acead7f..7d00828 100644 --- a/Linux/CPPBuilder/Dockerfile +++ b/Linux/CPPBuilder/Dockerfile @@ -63,6 +63,8 @@ RUN git clone --branch v2.40.4 https://github.com/rui314/mold.git /tmp/mold \ && cmake --install build \ && rm -rf /tmp/mold + RUN echo ${CONAN_PROFILE_BRANCH} + # Configure Conan with custom profiles and remote RUN conan config install https://git.romainboullard.com/BigfootDev/ConanProfiles.git --args=--branch ${CONAN_PROFILE_BRANCH} \ && conan remote add bigfootpackages https://conan.romainboullard.com/artifactory/api/conan/bigfootpackages \