Skip to content
Snippets Groups Projects
Commit 37cbe4ff authored by inso's avatar inso
Browse files

Enable only necessary modules on travis too

parent eb7dda2d
No related branches found
No related tags found
No related merge requests found
...@@ -57,10 +57,18 @@ then ...@@ -57,10 +57,18 @@ then
pyenv activate sakia-env pyenv activate sakia-env
if [ $TRAVIS_OS_NAME == "osx" ] if [ $TRAVIS_OS_NAME == "osx" ]
then then
python configure.py --confirm-license python configure.py --confirm-license \
--enable QtCore \
--enable QtWidgets \
--enable QtGui \
--enable QtSvg
elif [ $TRAVIS_OS_NAME == "linux" ] elif [ $TRAVIS_OS_NAME == "linux" ]
then then
python configure.py --qmake "/usr/lib/x86_64-linux-gnu/qt5/bin/qmake" --confirm-license python configure.py --qmake "/usr/lib/x86_64-linux-gnu/qt5/bin/qmake" --confirm-license \
--enable QtCore \
--enable QtWidgets \
--enable QtGui \
--enable QtSvg
fi fi
make -j 2 && make install make -j 2 && make install
......
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