From: "Alex Bennée" <alex.bennee@linaro.org>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, "Alex Bennée" <alex.bennee@linaro.org>,
david@gibson.dropbear.id.au
Subject: [Qemu-devel] [PATCH v1 2/3] .travis.yml: enable OSX builds
Date: Tue, 22 Mar 2016 12:53:14 +0000 [thread overview]
Message-ID: <1458651195-21176-3-git-send-email-alex.bennee@linaro.org> (raw)
In-Reply-To: <1458651195-21176-1-git-send-email-alex.bennee@linaro.org>
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
- 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
+#
+# Install MacOSX dependancies
+#
+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
next prev parent reply other threads:[~2016-03-22 12:53 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 ` Alex Bennée [this message]
2016-03-22 13:49 ` [Qemu-devel] [PATCH v1 2/3] .travis.yml: enable OSX builds Peter Maydell
2016-03-22 14:12 ` Alex Bennée
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=1458651195-21176-3-git-send-email-alex.bennee@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).