Mahi
Mahi

Reputation: 352

Is there any alternative way to use qt4 in travis CI for osx (brew removed qt4)

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

Answers (2)

artoonie
artoonie

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

Mahi
Mahi

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

Related Questions