From: "Alex Bennée" <alex.bennee@linaro.org>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: QEMU Developers <qemu-devel@nongnu.org>,
David Gibson <david@gibson.dropbear.id.au>
Subject: Re: [Qemu-devel] [PATCH v1 2/3] .travis.yml: enable OSX builds
Date: Tue, 22 Mar 2016 14:12:10 +0000 [thread overview]
Message-ID: <87egb2sith.fsf@linaro.org> (raw)
In-Reply-To: <CAFEAcA-VOVPAKX8FMCO3wBpKCgsNuAiSST0bQXqRsRgPHr6cnA@mail.gmail.com>
Peter Maydell <peter.maydell@linaro.org> writes:
> On 22 March 2016 at 12:53, Alex Bennée <alex.bennee@linaro.org> wrote:
>> 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 <alex.bennee@linaro.org>
>> ---
>> .travis.yml | 4 ++++
>> scripts/macosx-brew.sh | 12 ++++++++++++
>> 2 files changed, 16 insertions(+)
>> create mode 100755 scripts/macosx-brew.sh
>>
>> diff --git a/.travis.yml b/.travis.yml
>> index 18c04af..3f77bfa 100644
>> --- a/.travis.yml
>> +++ b/.travis.yml
>> @@ -53,6 +53,7 @@ git:
>> # we want to do this ourselves
>> submodules: false
>> before_install:
>> + - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./scripts/macosx-brew.sh ; fi
>
> [[ is a bash-ism, does travis guarantee we are using bash here?
> (Alternatively just use single [] and the '=' operator.)
Well I copied it directly from their docs so I'm assuming so:
https://docs.travis-ci.com/user/multi-os/
>
>> - 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 +84,6 @@ matrix:
>> - env: CONFIG="--with-coroutine=gthread"
>> TEST_CMD=""
>> compiler: gcc
>> + - env: CONFIG=""
>> + os: osx
>> + compiler: clang
>> diff --git a/scripts/macosx-brew.sh b/scripts/macosx-brew.sh
>> new file mode 100755
>> index 0000000..fc0d588
>> --- /dev/null
>> +++ b/scripts/macosx-brew.sh
>> @@ -0,0 +1,12 @@
>> +#!/bin/sh
>
> You should probably be using '-e' here.
>
> Missing license/copyright info.
>
>> +#
>> +# Install MacOSX dependancies
>
> "dependencies".
>
>> +#
>> +brew update
>> +brew install libffi
>> +brew install gettext
>> +brew install pkg-config
>> +brew install glib
>> +brew install autoconf
>> +brew install automake
>> +brew install pixman
>> --
>> 2.7.3
>
> If we're going to have an extra script, we should probably
> either (a) note it as being for the benefit of the Travis install
> or (b) better document whether/how end users should
> use it.
>
> I think the minimal code to do it inline in .travis.yml is:
>
> - [ "$TRAVIS_OS_NAME" = "osx" ] && brew update
> - [ "$TRAVIS_OS_NAME" = "osx" ] && brew install libffi gettext
> pkg-config glib autoconf automake pixman
Ahh fair enough, when I started down the route I didn't know how complex
setting up the environment would be. I wonder if MinGW will be as easy
to setup?
>
> (you could skip pixman and rely on the submodule).
>
> thanks
> -- PMM
--
Alex Bennée
next prev parent reply other threads:[~2016-03-22 14:12 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-22 12:53 [Qemu-devel] [PATCH v1 0/3] reduce the matrix, add OSX, speed-up Travis? Alex Bennée
2016-03-22 12:53 ` [Qemu-devel] [PATCH v1 1/3] .travis.yml: collapse the test matrix Alex Bennée
2016-03-23 0:42 ` David Gibson
2016-03-22 12:53 ` [Qemu-devel] [PATCH v1 2/3] .travis.yml: enable OSX builds Alex Bennée
2016-03-22 13:49 ` Peter Maydell
2016-03-22 14:12 ` Alex Bennée [this message]
2016-03-22 12:53 ` [Qemu-devel] [PATCH v1 3/3] .travis.yml: make -j3 Alex Bennée
2016-03-23 1:25 ` David Gibson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87egb2sith.fsf@linaro.org \
--to=alex.bennee@linaro.org \
--cc=david@gibson.dropbear.id.au \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).