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

fix: cibuildwheel.sh script

parent e09f7881
No related branches found
No related tags found
2 merge requests!212Version 0.3.0,!116feat/release_pip
#!/bin/bash #!/bin/bash
set -x set -x
set -e set -e
if [[ $repo == "" ]]; 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
else else
...@@ -20,6 +20,7 @@ else ...@@ -20,6 +20,7 @@ else
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
pip install . -v pip install . -v
cd -
done done
fi fi
set +x set +x
......
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