Reputation: 352
I was using brew install qt
for using qt4 lib in travis CI on a osx image with (el capitan).
But they removed the qt4 package from brew and the travis build is failing.
Is there any other way to install qt4 lib in travis?
Upvotes: 0
Views: 103
Reputation: 847
You need to run:
brew tap cartr/qt4
brew tap-pin cartr/qt4
brew install cartr/qt4/qt
brew install cartr/qt4/pyqt
Make sure to prepend your build command with travis_wait 30
, since TravisCI will time-out your build if it runs for ten minutes without any output.
Upvotes: 1
Reputation: 352
I finally found the solution ...
i tried
brew tap freeCAD/freecad
brew install freecad/freecad/qt
and also the cartr/homebrew-qt4 works well right now the problem with older os fixed (Provide bottles for older OS versions)
Upvotes: 0