aboutsummaryrefslogtreecommitdiff
path: root/.cirrus.yml
blob: 3dd9fcff7fa9f3b2de9222988383a923a62bef27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
env:
  CIRRUS_CLONE_DEPTH: 1

freebsd_1st_task:
  freebsd_instance:
    image_family: freebsd-12-1
    cpu: 4
    memory: 4G
  install_script: ASSUME_ALWAYS_YES=yes pkg bootstrap -f ; pkg install -y
    bash curl cyrus-sasl git glib gmake gnutls gsed
    nettle perl5 pixman pkgconf png usbredir
  script:
    - mkdir build
    - cd build
    - ../configure --disable-user --target-list-exclude='alpha-softmmu
        ppc64-softmmu ppc-softmmu riscv32-softmmu riscv64-softmmu s390x-softmmu
        sparc64-softmmu sparc-softmmu x86_64-softmmu i386-softmmu'
        --enable-werror || { cat config.log; exit 1; }
    - gmake -j$(sysctl -n hw.ncpu)
    - gmake -j$(sysctl -n hw.ncpu) check

freebsd_2nd_task:
  freebsd_instance:
    image_family: freebsd-12-1
    cpu: 4
    memory: 4G
  install_script: ASSUME_ALWAYS_YES=yes pkg bootstrap -f ; pkg install -y
    bash curl cyrus-sasl git glib gmake gnutls gtk3 gsed libepoxy mesa-libs
    nettle perl5 pixman pkgconf png SDL2 usbredir
  script:
    - ./configure --enable-werror --target-list='alpha-softmmu ppc64-softmmu
        ppc-softmmu riscv32-softmmu riscv64-softmmu s390x-softmmu
        sparc64-softmmu sparc-softmmu x86_64-softmmu i386-softmmu
        sparc-bsd-user sparc64-bsd-user x86_64-bsd-user i386-bsd-user'
        || { cat config.log; exit 1; }
    - gmake -j$(sysctl -n hw.ncpu)
    - gmake -j$(sysctl -n hw.ncpu) check

macos_task:
  osx_instance:
    image: catalina-base
  install_script:
    - brew install pkg-config python gnu-sed glib pixman make sdl2 bash
  script:
    - mkdir build
    - cd build
    - ../configure --python=/usr/local/bin/python3 --enable-werror
                   --extra-cflags='-Wno-error=deprecated-declarations'
                   || { cat config.log; exit 1; }
    - gmake -j$(sysctl -n hw.ncpu)
    - gmake check

macos_xcode_task:
  osx_instance:
    # this is an alias for the latest Xcode
    image: catalina-xcode
  install_script:
    - brew install pkg-config gnu-sed glib pixman make sdl2 bash
  script:
    - mkdir build
    - cd build
    - ../configure --extra-cflags='-Wno-error=deprecated-declarations'
                   --enable-werror --cc=clang || { cat config.log; exit 1; }
    - gmake -j$(sysctl -n hw.ncpu)
    - gmake check