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

chore : reorganized cibuildwheel section in pyproject.toml

parent 318b044a
No related branches found
No related tags found
No related merge requests found
...@@ -49,6 +49,13 @@ test-command = "pytest {package}/aidge_core/unit_tests" ...@@ -49,6 +49,13 @@ test-command = "pytest {package}/aidge_core/unit_tests"
# ] # ]
### AIDGE DEPENDENCIES DECLARATION ### AIDGE DEPENDENCIES DECLARATION
[tool.cibuildwheel.linux.environment]
# aidge_core do not rely on any aidge dependency, hence this string is empty
AIDGE_DEPENDENCIES = "" # format => "dep_1 dep_2 ... dep_n"
AIDGE_INSTALL="/AIDGE_INSTALL_CIBUILDWHEEL"
[tool.cibuildwheel.windows.environment]
AIDGE_DEPENDENCIES = '@()' # format => '@("dep_1","dep_2", ... ,"dep_n")'
AIDGE_INSTALL="../AIDGE_INSTALL_CIBUILDWHEEL/"
[tool.cibuildwheel.linux] [tool.cibuildwheel.linux]
before-build = [ before-build = [
"bash .gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh /host" "bash .gitlab/ci/cibuildwheel_build_deps_before_build_wheel.sh /host"
...@@ -57,13 +64,6 @@ before-build = [ ...@@ -57,13 +64,6 @@ before-build = [
before-build = [ before-build = [
"powershell -File .\\.gitlab\\ci\\cibuildwheel_build_deps_before_build_wheel.ps1" "powershell -File .\\.gitlab\\ci\\cibuildwheel_build_deps_before_build_wheel.ps1"
] ]
[tool.cibuildwheel.linux.environment]
# aidge_core do not rely on any aidge dependency, hence this string is empty
AIDGE_DEPENDENCIES = "" # format => "dep_1 dep_2 ... dep_n"
AIDGE_INSTALL="/AIDGE_INSTALL_CIBUILDWHEEL"
[tool.cibuildwheel.windows.environment]
AIDGE_DEPENDENCIES = '@()' # format => '@("dep_1","dep_2", ... ,"dep_n")'
AIDGE_INSTALL="../AIDGE_INSTALL_CIBUILDWHEEL/"
##################################################### #####################################################
......
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