xref: /qemu/.gitlab-ci.yml (revision 65ea4e65)
1include:
2  - local: '/.gitlab-ci-edk2.yml'
3  - local: '/.gitlab-ci-opensbi.yml'
4
5.update_apt_template: &before_script_apt
6 before_script:
7  - apt-get update -qq
8  - apt-get install -y -qq libglib2.0-dev libpixman-1-dev genisoimage
9
10build-system1:
11 <<: *before_script_apt
12 script:
13 - apt-get install -y -qq libgtk-3-dev libvte-dev nettle-dev libcacard-dev
14      libusb-dev libvde-dev libspice-protocol-dev libgl1-mesa-dev libvdeplug-dev
15 - mkdir build
16 - cd build
17 - ../configure --enable-werror --target-list="aarch64-softmmu alpha-softmmu
18      cris-softmmu hppa-softmmu lm32-softmmu moxie-softmmu microblazeel-softmmu
19      mips64el-softmmu m68k-softmmu ppc-softmmu riscv64-softmmu sparc-softmmu"
20 - make -j2
21 - make -j2 check
22
23build-system2:
24 <<: *before_script_apt
25 script:
26 - apt-get install -y -qq libsdl2-dev libgcrypt-dev libbrlapi-dev libaio-dev
27      libfdt-dev liblzo2-dev librdmacm-dev libibverbs-dev libibumad-dev
28      libzstd-dev
29 - mkdir build
30 - cd build
31 - ../configure --enable-werror --target-list="tricore-softmmu unicore32-softmmu
32      microblaze-softmmu mips-softmmu riscv32-softmmu s390x-softmmu sh4-softmmu
33      sparc64-softmmu x86_64-softmmu xtensa-softmmu nios2-softmmu or1k-softmmu"
34 - make -j2
35 - make -j2 check
36
37build-disabled:
38 <<: *before_script_apt
39 script:
40 - mkdir build
41 - cd build
42 - ../configure --enable-werror --disable-rdma --disable-slirp --disable-curl
43      --disable-capstone --disable-live-block-migration --disable-glusterfs
44      --disable-replication --disable-coroutine-pool --disable-smartcard
45      --disable-guest-agent --disable-curses --disable-libxml2 --disable-tpm
46      --disable-qom-cast-debug --disable-spice --disable-vhost-vsock
47      --disable-vhost-net --disable-vhost-crypto --disable-vhost-user
48      --target-list="i386-softmmu ppc64-softmmu mips64-softmmu i386-linux-user"
49 - make -j2
50 - make -j2 check-qtest SPEED=slow
51
52build-tcg-disabled:
53 <<: *before_script_apt
54 script:
55 - apt-get install -y -qq clang libgtk-3-dev libusb-dev
56 - mkdir build
57 - cd build
58 - ../configure --cc=clang --enable-werror --disable-tcg --audio-drv-list=""
59 - make -j2
60 - make check-unit
61 - make check-qapi-schema
62 - cd tests/qemu-iotests/
63 - ./check -raw 001 002 003 004 005 008 009 010 011 012 021 025 032 033 048
64            052 063 077 086 101 104 106 113 148 150 151 152 157 159 160 163
65            170 171 183 184 192 194 197 208 215 221 222 226 227 236 253 277
66 - ./check -qcow2 028 051 056 057 058 065 067 068 082 085 091 095 096 102 122
67            124 132 139 142 144 145 151 152 155 157 165 194 196 197 200 202
68            208 209 215 216 218 222 227 234 246 247 248 250 254 255 257 258
69            260 261 262 263 264 270 272 273 277 279
70
71build-user:
72 <<: *before_script_apt
73 script:
74 - mkdir build
75 - cd build
76 - ../configure --enable-werror --disable-system --disable-guest-agent
77               --disable-capstone --disable-slirp --disable-fdt
78 - make -j2
79 - make run-tcg-tests-i386-linux-user run-tcg-tests-x86_64-linux-user
80
81build-clang:
82 <<: *before_script_apt
83 script:
84 - apt-get install -y -qq clang libsdl2-dev libattr1-dev libcap-ng-dev
85      xfslibs-dev libiscsi-dev libnfs-dev libseccomp-dev gnutls-dev librbd-dev
86 - mkdir build
87 - cd build
88 - ../configure --cc=clang --cxx=clang++ --enable-werror
89      --target-list="alpha-softmmu arm-softmmu m68k-softmmu mips64-softmmu
90                     ppc-softmmu s390x-softmmu x86_64-softmmu arm-linux-user"
91 - make -j2
92 - make -j2 check
93
94build-tci:
95 <<: *before_script_apt
96 script:
97 - TARGETS="aarch64 alpha arm hppa m68k microblaze moxie ppc64 s390x x86_64"
98 - mkdir build
99 - cd build
100 - ../configure --enable-tcg-interpreter
101      --target-list="$(for tg in $TARGETS; do echo -n ${tg}'-softmmu '; done)"
102 - make -j2
103 - make run-tcg-tests-x86_64-softmmu
104 - make tests/qtest/boot-serial-test tests/qtest/cdrom-test tests/qtest/pxe-test
105 - for tg in $TARGETS ; do
106     export QTEST_QEMU_BINARY="${tg}-softmmu/qemu-system-${tg}" ;
107     ./tests/qtest/boot-serial-test || exit 1 ;
108     ./tests/qtest/cdrom-test || exit 1 ;
109   done
110 - QTEST_QEMU_BINARY="x86_64-softmmu/qemu-system-x86_64" ./tests/qtest/pxe-test
111 - QTEST_QEMU_BINARY="s390x-softmmu/qemu-system-s390x"
112   ./tests/qtest/pxe-test -m slow
113