1before_script: 2 - apt-get update -qq 3 - apt-get install -y -qq flex bison libglib2.0-dev libpixman-1-dev genisoimage 4 5build-system1: 6 script: 7 - apt-get install -y -qq libgtk-3-dev libvte-dev nettle-dev libcacard-dev 8 libusb-dev libvde-dev libspice-protocol-dev libgl1-mesa-dev 9 - ./configure --enable-werror --target-list="aarch64-softmmu alpha-softmmu 10 cris-softmmu hppa-softmmu lm32-softmmu moxie-softmmu microblazeel-softmmu 11 mips64el-softmmu m68k-softmmu ppc-softmmu riscv64-softmmu sparc-softmmu" 12 - make -j2 13 - make -j2 check 14 15build-system2: 16 script: 17 - apt-get install -y -qq libsdl2-dev libgcrypt-dev libbrlapi-dev libaio-dev 18 libfdt-dev liblzo2-dev librdmacm-dev libibverbs-dev libibumad-dev 19 - ./configure --enable-werror --target-list="tricore-softmmu unicore32-softmmu 20 microblaze-softmmu mips-softmmu riscv32-softmmu s390x-softmmu sh4-softmmu 21 sparc64-softmmu x86_64-softmmu xtensa-softmmu nios2-softmmu or1k-softmmu" 22 - make -j2 23 - make -j2 check 24 25build-disabled: 26 script: 27 - ./configure --enable-werror --disable-rdma --disable-slirp --disable-curl 28 --disable-capstone --disable-live-block-migration --disable-glusterfs 29 --disable-replication --disable-coroutine-pool --disable-smartcard 30 --disable-guest-agent --disable-curses --disable-libxml2 --disable-tpm 31 --disable-qom-cast-debug --disable-spice --disable-vhost-vsock 32 --disable-vhost-net --disable-vhost-crypto --disable-vhost-user 33 --target-list="i386-softmmu ppc64-softmmu mips64-softmmu i386-linux-user" 34 - make -j2 35 - make -j2 check-qtest SPEED=slow 36 37build-tcg-disabled: 38 script: 39 - apt-get install -y -qq clang libgtk-3-dev libbluetooth-dev libusb-dev 40 - ./configure --cc=clang --enable-werror --disable-tcg --audio-drv-list="" 41 - make -j2 42 - make check-unit 43 - make check-qapi-schema 44 - cd tests/qemu-iotests/ 45 - ./check -raw 001 002 003 004 005 008 009 010 011 012 021 025 032 033 048 46 052 063 077 086 101 104 106 113 147 148 150 151 152 157 159 160 47 163 170 171 183 184 192 194 197 205 208 215 221 222 226 227 236 48 - ./check -qcow2 001 002 003 004 005 007 008 009 010 011 012 013 017 018 019 49 020 021 022 024 025 027 028 029 031 032 033 034 035 036 037 038 50 039 040 042 043 046 047 048 049 050 051 052 053 054 056 057 058 51 060 061 062 063 065 066 067 068 069 071 072 073 074 079 080 082 52 085 086 089 090 091 095 096 097 098 099 102 103 104 105 107 108 53 110 111 114 117 120 122 124 126 127 129 130 132 133 134 137 138 54 139 140 141 142 143 144 145 147 150 151 152 154 155 156 157 158 55 161 165 170 172 174 176 177 179 184 186 187 190 192 194 195 196 56 197 200 202 203 205 208 209 214 215 216 217 218 222 226 227 229 234 57 58build-user: 59 script: 60 - ./configure --enable-werror --disable-system --disable-guest-agent 61 --disable-capstone --disable-slirp --disable-fdt 62 - make -j2 63 - make run-tcg-tests-i386-linux-user run-tcg-tests-x86_64-linux-user 64 65build-clang: 66 script: 67 - apt-get install -y -qq clang libsdl2-dev 68 xfslibs-dev libiscsi-dev libnfs-dev libseccomp-dev gnutls-dev librbd-dev 69 - ./configure --cc=clang --cxx=clang++ --enable-werror 70 --target-list="alpha-softmmu arm-softmmu m68k-softmmu mips64-softmmu 71 ppc-softmmu s390x-softmmu x86_64-softmmu arm-linux-user" 72 - make -j2 73 - make -j2 check 74 75build-tci: 76 script: 77 - TARGETS="aarch64 alpha arm hppa m68k microblaze moxie ppc64 s390x x86_64" 78 - ./configure --enable-tcg-interpreter 79 --target-list="$(for tg in $TARGETS; do echo -n ${tg}'-softmmu '; done)" 80 - make -j2 81 - make tests/boot-serial-test tests/cdrom-test tests/pxe-test 82 - for tg in $TARGETS ; do 83 export QTEST_QEMU_BINARY="${tg}-softmmu/qemu-system-${tg}" ; 84 ./tests/boot-serial-test || exit 1 ; 85 ./tests/cdrom-test || exit 1 ; 86 done 87 - QTEST_QEMU_BINARY="x86_64-softmmu/qemu-system-x86_64" ./tests/pxe-test 88 - QTEST_QEMU_BINARY="s390x-softmmu/qemu-system-s390x" ./tests/pxe-test -m slow 89