Skip to content

Commit

Permalink
Speed up apple builds (#3058)
Browse files Browse the repository at this point in the history
- fltk appears to have been fixed in Homebrew
 - removed "reinstall" to speed up builds
  • Loading branch information
tresf authored and Umcaruje committed Sep 29, 2016
1 parent 70a5ee4 commit 68df69d
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .travis/osx..install.sh
Original file line number Diff line number Diff line change
@@ -1,20 +1,13 @@
#!/usr/bin/env bash

PACKAGES="cmake pkgconfig fftw libogg libvorbis libsndfile libsamplerate jack sdl stk fluid-synth portaudio node"
PACKAGES="cmake pkgconfig fftw libogg libvorbis libsndfile libsamplerate jack sdl stk fluid-synth portaudio node fltk"

if [ $QT5 ]; then
PACKAGES="$PACKAGES qt55"
else
PACKAGES="$PACKAGES qt"
fi

brew reinstall $PACKAGES
brew install $PACKAGES

sudo npm install -g appdmg

# Workaround per Homebrew bug #44806
brew reinstall fltk
if [ $? -ne 0 ]; then
echo "Warning: fltk installation failed, trying workaround..."
brew reinstall --devel https://raw.githubusercontent.com/dpo/homebrew/ec46018128dde5bf466b013a6c7086d0880930a3/Library/Formula/fltk.rb
fi

0 comments on commit 68df69d

Please sign in to comment.