From 0c4032b5af1654352347bc10b663e3c36a4fddf5 Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Mon, 17 Aug 2015 17:06:56 +0100 Subject: [PATCH] CI run on OSX needs binutils OSX does not ship with binutils, need to install it before the script run via brew in order to be able to use greadelf, needed by the qt-android CI script. --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index cbc520f4..16f656b6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,9 @@ env: sudo: false +before_install: +- if [ $TRAVIS_OS_NAME == "osx" ] ; then brew update; brew install binutils ; fi + before_script: # ZMQ stress tests need more open socket (files) than the usual default # On OSX, it seems the way to set the max files limit is constantly changing, so