From 95e8a33097a7a5babfebea49b5b2c2985a0599da Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Mon, 21 Jul 2025 17:24:22 +0200 Subject: [PATCH] ci: fix system_deps python jobs not using archlinux's pybind11 --- cmake/docker/system_deps/python.Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmake/docker/system_deps/python.Dockerfile b/cmake/docker/system_deps/python.Dockerfile index 3a336268f7..a9c53c659d 100644 --- a/cmake/docker/system_deps/python.Dockerfile +++ b/cmake/docker/system_deps/python.Dockerfile @@ -1,7 +1,7 @@ FROM ortools/cmake:system_deps_swig AS env ENV PATH=/root/.local/bin:$PATH -RUN pacman -Syu --noconfirm pybind11 +#RUN pacman -Syu --noconfirm pybind11 RUN pacman -Syu --noconfirm python \ python-setuptools python-wheel python-virtualenv \ python-pip python-protobuf python-numpy python-pandas @@ -15,6 +15,7 @@ COPY . . FROM devel AS build # Archlinux do not provide pybind11 protobuf package RUN cmake -S. -Bbuild -DBUILD_DEPS=OFF \ + -DBUILD_pybind11=ON \ -DBUILD_pybind11_abseil=ON \ -DBUILD_pybind11_protobuf=ON \ -DUSE_COINOR=ON \