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