From b23e72e1d03977e5dc21f2fdb16e2f43a3f12cb4 Mon Sep 17 00:00:00 2001 From: Aaron Teo Date: Tue, 9 Sep 2025 16:19:35 +0800 Subject: [PATCH] devops: attempt at fixing model loading failure Signed-off-by: Aaron Teo --- .devops/s390x.Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.devops/s390x.Dockerfile b/.devops/s390x.Dockerfile index 67133e9d55..657a4afe00 100644 --- a/.devops/s390x.Dockerfile +++ b/.devops/s390x.Dockerfile @@ -22,6 +22,9 @@ RUN --mount=type=cache,target=/root/.ccache \ && cmake --build build --config Release -j $(nproc) \ && cmake --install build --prefix /opt/llama.cpp +RUN find /opt/llama.cpp/bin -name "*.so" -exec mv {} /opt/llama.cpp/lib \; + +# DOUBLE CHECK ALL FILES ARE COPIED INTO COLLECTOR RUN cp *.py /opt/llama.cpp \ && cp -r gguf-py /opt/llama.cpp \ && cp -r requirements /opt/llama.cpp \