From c1322bd149719e2922faa4f258d55c7dba4c6b82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20KUBLER?= <gregoire.kubler@proton.me> Date: Fri, 5 Jul 2024 10:57:03 +0200 Subject: [PATCH] fix : disabled ninja for windows build because it fails in the CI --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 71a29afbf..622d2f746 100644 --- a/setup.py +++ b/setup.py @@ -3,6 +3,7 @@ import os import shutil import pathlib import multiprocessing +import platform from math import ceil @@ -51,11 +52,12 @@ class CMakeBuild(build_ext): if "AIDGE_INSTALL" not in os.environ else os.environ["AIDGE_INSTALL"] ) - + # Ninja doesn't work for windows build on the ci for now + build_gen = ["-G", "Ninja"] if "Windows" in platform.system() else [] self.spawn( [ "cmake", - "-GNinja", # using ninja as build system to build faster and with the same compiler as on windows + *build_gen, # using ninja as build system to build faster and with the same compiler as on windows str(cwd), "-DTEST=OFF", f"-DCMAKE_INSTALL_PREFIX:PATH={install_path}", -- GitLab