Skip to content
Snippets Groups Projects
Commit 7f6d2cdb authored by Grégoire Kubler's avatar Grégoire Kubler
Browse files

feat: replaced -iname by -name since search must be case sensitive + doc

parent 78a306dd
No related branches found
No related tags found
2 merge requests!212Version 0.3.0,!116feat/release_pip
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
set -x set -x
set -e set -e
for repo in $AIGE_DEPENDENCIES ; do 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 '*install*' \
-not -path '*.git*' \ -not -path '*.git*' \
-not -path '*miniconda*' \ -not -path '*miniconda*' \
......
...@@ -8,4 +8,6 @@ build-frontend = "build" ...@@ -8,4 +8,6 @@ build-frontend = "build"
before-build = [".gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh ${AIDGE_DEPENDENCIES}"] before-build = [".gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh ${AIDGE_DEPENDENCIES}"]
[tool.cibuildwheel.environment] [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"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment