]> Git Repo - qemu.git/blame - .cirrus.yml
cirrus.yml: Update the macOS jobs to Catalina
[qemu.git] / .cirrus.yml
CommitLineData
4966c5bd
TH
1env:
2 CIRRUS_CLONE_DEPTH: 1
3
7162fbb4
EM
4freebsd_12_task:
5 freebsd_instance:
8f3e2968 6 image_family: freebsd-12-1
7162fbb4
EM
7 cpu: 8
8 memory: 8G
ae528629 9 install_script: ASSUME_ALWAYS_YES=yes pkg bootstrap -f ; pkg install -y
48ba32e6 10 bash curl cyrus-sasl git glib gmake gnutls gsed
7162fbb4
EM
11 nettle perl5 pixman pkgconf png usbredir
12 script:
13 - mkdir build
14 - cd build
91bedaae 15 - ../configure --enable-werror || { cat config.log; exit 1; }
7162fbb4 16 - gmake -j8
7e123614 17 - gmake V=1 check
4966c5bd
TH
18
19macos_task:
20 osx_instance:
7498e6af 21 image: catalina-base
4966c5bd 22 install_script:
83c85bf1 23 - brew install pkg-config python gnu-sed glib pixman make sdl2 bash
4966c5bd 24 script:
bc4486fb
PB
25 - mkdir build
26 - cd build
d76efeda
TH
27 - ../configure --python=/usr/local/bin/python3 --enable-werror
28 --extra-cflags='-Wno-error=deprecated-declarations'
29 || { cat config.log; exit 1; }
4966c5bd 30 - gmake -j$(sysctl -n hw.ncpu)
7e123614 31 - gmake check
fc84471a
AB
32
33macos_xcode_task:
34 osx_instance:
35 # this is an alias for the latest Xcode
7498e6af 36 image: catalina-xcode
fc84471a 37 install_script:
83c85bf1 38 - brew install pkg-config gnu-sed glib pixman make sdl2 bash
fc84471a 39 script:
bc4486fb
PB
40 - mkdir build
41 - cd build
d76efeda
TH
42 - ../configure --extra-cflags='-Wno-error=deprecated-declarations'
43 --enable-werror --cc=clang || { cat config.log; exit 1; }
fc84471a 44 - gmake -j$(sysctl -n hw.ncpu)
7e123614 45 - gmake check
This page took 0.076496 seconds and 4 git commands to generate.