From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39475) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1alcrv-00065j-Ir for qemu-devel@nongnu.org; Thu, 31 Mar 2016 09:42:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1alcrr-0001r4-IP for qemu-devel@nongnu.org; Thu, 31 Mar 2016 09:42:39 -0400 Received: from mail-wm0-x232.google.com ([2a00:1450:400c:c09::232]:34147) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1alcrr-0001qL-4Y for qemu-devel@nongnu.org; Thu, 31 Mar 2016 09:42:35 -0400 Received: by mail-wm0-x232.google.com with SMTP id p65so225886404wmp.1 for ; Thu, 31 Mar 2016 06:42:34 -0700 (PDT) References: <1458753657-21664-1-git-send-email-alex.bennee@linaro.org> <1458753657-21664-3-git-send-email-alex.bennee@linaro.org> From: Alex =?utf-8?Q?Benn=C3=A9e?= In-reply-to: <1458753657-21664-3-git-send-email-alex.bennee@linaro.org> Date: Thu, 31 Mar 2016 14:42:36 +0100 Message-ID: <87vb42g3w3.fsf@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH v2 2/5] .travis.yml: enable OSX builds List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, david@gibson.dropbear.id.au Alex Bennée writes: > Travis has support for OSX builds. Making the setup work cleanly > involves a little hacking about with the .travis.yml file but rather > than make it too messy I've pushed all the "brew" install stuff into a > support script called ./scripts/macosx-brew.sh. > > Currently only the default ./configure ${CONFIG} is built as I'm not > sure what extra coverage would come from the other build stanzas. > > Signed-off-by: Alex Bennée Ping Peter. Does this look OK for you? > > --- > v2 > - brew directly, use POSIX shell logic > --- > .travis.yml | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/.travis.yml b/.travis.yml > index 18c04af..f02710d 100644 > --- a/.travis.yml > +++ b/.travis.yml > @@ -53,6 +53,8 @@ git: > # we want to do this ourselves > submodules: false > before_install: > + - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update ; fi > + - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install libffi gettext glib pixman ; fi > - wget -O - http://people.linaro.org/~alex.bennee/qemu-submodule-git-seed.tar.xz | tar -xvJ > - git submodule update --init --recursive > before_script: > @@ -83,3 +85,6 @@ matrix: > - env: CONFIG="--with-coroutine=gthread" > TEST_CMD="" > compiler: gcc > + - env: CONFIG="" > + os: osx > + compiler: clang -- Alex Bennée