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

feat : added help to cibuildwheel script

parent a31ee12b
No related branches found
No related tags found
2 merge requests!212Version 0.3.0,!116feat/release_pip
Pipeline #45952 canceled
#!/bin/bash #!/bin/bash
set -x set -x
set -e set -e
if [[ "$1" == "" ]]; then
echo "build aidge deps in cibuildwheel container before building wheel."
echo "search path defines where the dependencies will be searched."
echo "Hint : In wheel containers, files are mounted on /host by default."
echo "\nusage : ./cibuildwheel_build_deps_before_build_wheel.sh $search_path"
fi
if [[ $AIDGE_DEPENDENCIES == "" ]]; then # case for aidge_ core if [[ $AIDGE_DEPENDENCIES == "" ]]; then # case for aidge_ core
mkdir -p build # creating build if its not already there to hold the build of cpp files mkdir -p build # creating build if its not already there to hold the build of cpp files
rm -rf build/* # build from scratch rm -rf build/* # build from scratch
......
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