From: Alex Bennée Date: Wed, 16 Oct 2019 18:27:13 +0000 (+0100) Subject: cirrus.yml: add latest Xcode build target X-Git-Tag: v4.2.0-rc0~34^2~7 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=fc84471ae2867823f56b1ad1705de324c2d8b725;p=users%2Fdwmw2%2Fqemu.git cirrus.yml: add latest Xcode build target CirrusCI provides a mojave-xcode alias for the latest Xcode available. Let's use it to make sure we track the latest releases. Signed-off-by: Alex Bennée --- diff --git a/.cirrus.yml b/.cirrus.yml index 8326a3a4b1..27efc48619 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -25,3 +25,14 @@ macos_task: - ./configure --python=/usr/local/bin/python3 || { cat config.log; exit 1; } - gmake -j$(sysctl -n hw.ncpu) - gmake check -j$(sysctl -n hw.ncpu) + +macos_xcode_task: + osx_instance: + # this is an alias for the latest Xcode + image: mojave-xcode + install_script: + - brew install pkg-config gnu-sed glib pixman make sdl2 + script: + - ./configure --cc=clang || { cat config.log; exit 1; } + - gmake -j$(sysctl -n hw.ncpu) + - gmake check -j$(sysctl -n hw.ncpu)