AppVeyor - Don't rebuild SIP each time

This commit is contained in:
Alejandro Martinez
2025-05-06 10:19:04 -03:00
parent 977201243f
commit df80ff1cc7
3 changed files with 28 additions and 17 deletions

View File

@@ -58,11 +58,15 @@ if [ -z "$(ls -A site-packages)" ]; then
fi
# Python SIP
curl -k -L -O https://sourceforge.net/projects/pyqt/files/sip/sip-4.19.8/sip-4.19.8.tar.gz
tar xf sip-4.19.8.tar.gz
if [ -z "$(ls -A sip-4.19.8)" ]; then
curl -k -L -O https://sourceforge.net/projects/pyqt/files/sip/sip-4.19.8/sip-4.19.8.tar.gz
tar xf sip-4.19.8.tar.gz
cd sip-4.19.8
python3.7 configure.py
make -j2
cd ..
fi
cd sip-4.19.8
python3.7 configure.py
make -j4
sudo make install
cd ..