From 7f6d2cdbb0eacbb2dafe541232b46a0c29bc9edc Mon Sep 17 00:00:00 2001 From: gregkub <gregoire.kubler@proton.me> Date: Mon, 22 Apr 2024 10:52:54 +0200 Subject: [PATCH] feat: replaced -iname by -name since search must be case sensitive + doc --- .gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh | 2 +- pyproject.toml | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh b/.gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh index efc0bc5d3..699cb50d2 100755 --- a/.gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh +++ b/.gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh @@ -2,7 +2,7 @@ set -x set -e for repo in $AIGE_DEPENDENCIES ; do - REPO_PATH=$(find /host/home/ -type d -iname $repo \ + REPO_PATH=$(find /host/home/ -type d -name $repo \ -not -path '*install*' \ -not -path '*.git*' \ -not -path '*miniconda*' \ diff --git a/pyproject.toml b/pyproject.toml index 1556b4442..17a8d888e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,4 +8,6 @@ build-frontend = "build" before-build = [".gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh ${AIDGE_DEPENDENCIES}"] [tool.cibuildwheel.environment] -AIGE_DEPENDENCIES = "" # aidge_core do not rely on any aidge dependency + +# aidge_core do not rely on any aidge dependency +AIGE_DEPENDENCIES = "" # format => "dep_1 dep_2 ... dep_n" -- GitLab