Closed sunjiabin17 closed 10 months ago
it seems like downloading RAPIDS.cmake from raw.githubusercontent.com failed but without error prompts. here https://github.com/triton-inference-server/fil_backend/blob/e988867595991221e4368b8fa697567a536cb0c8/CMakeLists.txt#L71-L74
it goes well after i specified proxy server here https://github.com/triton-inference-server/fil_backend/blob/e988867595991221e4368b8fa697567a536cb0c8/ops/Dockerfile#L149
RUN source /conda/dev/bin/activate \
&& export http_proxy=http://127.0.0.1:7890 && export https_proxy=http://127.0.0.1:7890 && cmake \
...
Hi, I'm trying to build fil backend from the triton-inference-server/server build.py generated script. I built the tritonserver_builder image, and enter it to run cmake build manually because of some network issues caused failures. when I trying to build fil backend, i got an error while executing
cmake --build . --config Debug -j24 -v -t install
FYI I pulled commit
8f9878966468664b39263db7f7d0dbb09db09ecb
from triton-inference-server/server, and run./build.py --build-type Debug --dryrun --enable-all -v
to generate build script and dockerfile;I did small changes so I can build it using my host network and proxy;
I had built triton inference server debug type successfully a few months ago, I don't why this failure happens.
to
COMMAND DOCKER_BUILDKIT=1 docker build --network=host -t
to
&& curl -x http://127.0.0.1:7890 -o /tmp/cuda-keyring.deb \
here is my build cmds
error full logs