Skip to content
Snippets Groups Projects
Commit 95d4b405 authored by Grégoire Kubler's avatar Grégoire Kubler Committed by Maxence Naud
Browse files

fix : missing deps in cibuildwheels testing

parent 65edea3a
No related branches found
No related tags found
1 merge request!18v0.1.3
...@@ -56,14 +56,17 @@ AIDGE_INSTALL="/host/AIDGE_INSTALL_CIBUILDWHEEL" ...@@ -56,14 +56,17 @@ AIDGE_INSTALL="/host/AIDGE_INSTALL_CIBUILDWHEEL"
[tool.cibuildwheel.windows.environment] [tool.cibuildwheel.windows.environment]
AIDGE_DEPENDENCIES = '@("aidge_core")' # format => '@("dep_1","dep_2", ... ,"dep_n")' AIDGE_DEPENDENCIES = '@("aidge_core")' # format => '@("dep_1","dep_2", ... ,"dep_n")'
AIDGE_INSTALL="../AIDGE_INSTALL_CIBUILDWHEEL/" AIDGE_INSTALL="../AIDGE_INSTALL_CIBUILDWHEEL/"
[tool.cibuildwheel.linux] [tool.cibuildwheel.linux]
before-build = [ before-build = [
"bash .gitlab/ci/cibuildwheel_install_opencv.sh /host", "bash .gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh /host"
]
before-test = [
"bash .gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh /host" "bash .gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh /host"
] ]
[tool.cibuildwheel.windows] [tool.cibuildwheel.windows]
before-build = [ before-build = [
"choco install opencv", "powershell -File .\\.gitlab\\ci\\cibuildwheel_build_deps_before_build_wheel.ps1"
]
before-test = [
"powershell -File .\\.gitlab\\ci\\cibuildwheel_build_deps_before_build_wheel.ps1" "powershell -File .\\.gitlab\\ci\\cibuildwheel_build_deps_before_build_wheel.ps1"
] ]
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