2020-01-03 12:26:25 +01:00
|
|
|
include:
|
2020-05-20 09:45:58 +02:00
|
|
|
- local: '/.gitlab-ci.d/edk2.yml'
|
|
|
|
- local: '/.gitlab-ci.d/opensbi.yml'
|
2020-01-03 12:26:25 +01:00
|
|
|
|
2020-03-12 20:36:14 +01:00
|
|
|
.update_apt_template: &before_script_apt
|
|
|
|
before_script:
|
|
|
|
- apt-get update -qq
|
2020-05-20 10:38:37 +02:00
|
|
|
- apt-get install -y -qq git gcc libglib2.0-dev libpixman-1-dev make
|
|
|
|
genisoimage
|
2020-05-21 06:50:10 +02:00
|
|
|
- JOBS=$(expr $(nproc) + 1)
|
2020-05-20 10:38:37 +02:00
|
|
|
|
|
|
|
.update_dnf_template: &before_script_dnf
|
|
|
|
before_script:
|
|
|
|
- dnf update -y
|
|
|
|
- dnf install -y bzip2 diffutils gcc git genisoimage findutils glib2-devel
|
|
|
|
make python3 perl-podlators perl-Test-Harness pixman-devel zlib-devel
|
2020-05-21 06:50:10 +02:00
|
|
|
- JOBS=$(expr $(nproc) + 1)
|
2019-02-13 12:54:41 +01:00
|
|
|
|
|
|
|
build-system1:
|
2020-05-20 10:38:37 +02:00
|
|
|
image: ubuntu:19.10
|
2020-03-12 20:36:14 +01:00
|
|
|
<<: *before_script_apt
|
2019-02-13 12:54:41 +01:00
|
|
|
script:
|
|
|
|
- apt-get install -y -qq libgtk-3-dev libvte-dev nettle-dev libcacard-dev
|
2019-10-16 15:10:02 +02:00
|
|
|
libusb-dev libvde-dev libspice-protocol-dev libgl1-mesa-dev libvdeplug-dev
|
2019-12-11 15:33:49 +01:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
|
|
|
- ../configure --enable-werror --target-list="aarch64-softmmu alpha-softmmu
|
2019-02-13 12:54:41 +01:00
|
|
|
cris-softmmu hppa-softmmu lm32-softmmu moxie-softmmu microblazeel-softmmu
|
|
|
|
mips64el-softmmu m68k-softmmu ppc-softmmu riscv64-softmmu sparc-softmmu"
|
2020-05-21 06:50:10 +02:00
|
|
|
- make -j"$JOBS"
|
|
|
|
- make -j"$JOBS" check
|
2019-02-13 12:54:41 +01:00
|
|
|
|
|
|
|
build-system2:
|
2020-05-20 10:38:37 +02:00
|
|
|
image: fedora:latest
|
|
|
|
<<: *before_script_dnf
|
2019-02-13 12:54:41 +01:00
|
|
|
script:
|
2020-05-20 10:38:37 +02:00
|
|
|
- yum install -y SDL2-devel libgcrypt-devel brlapi-devel libaio-devel
|
|
|
|
libfdt-devel lzo-devel librdmacm-devel libibverbs-devel libibumad-devel
|
|
|
|
libzstd-devel
|
2019-12-11 15:33:49 +01:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
|
|
|
- ../configure --enable-werror --target-list="tricore-softmmu unicore32-softmmu
|
2019-02-13 12:54:41 +01:00
|
|
|
microblaze-softmmu mips-softmmu riscv32-softmmu s390x-softmmu sh4-softmmu
|
|
|
|
sparc64-softmmu x86_64-softmmu xtensa-softmmu nios2-softmmu or1k-softmmu"
|
2020-05-21 06:50:10 +02:00
|
|
|
- make -j"$JOBS"
|
|
|
|
- make -j"$JOBS" check
|
2019-02-13 12:54:41 +01:00
|
|
|
|
|
|
|
build-disabled:
|
2020-05-20 10:38:37 +02:00
|
|
|
image: fedora:latest
|
|
|
|
<<: *before_script_dnf
|
2019-02-13 12:54:41 +01:00
|
|
|
script:
|
2019-12-11 15:33:49 +01:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
|
|
|
- ../configure --enable-werror --disable-rdma --disable-slirp --disable-curl
|
2019-02-13 12:54:41 +01:00
|
|
|
--disable-capstone --disable-live-block-migration --disable-glusterfs
|
|
|
|
--disable-replication --disable-coroutine-pool --disable-smartcard
|
|
|
|
--disable-guest-agent --disable-curses --disable-libxml2 --disable-tpm
|
|
|
|
--disable-qom-cast-debug --disable-spice --disable-vhost-vsock
|
|
|
|
--disable-vhost-net --disable-vhost-crypto --disable-vhost-user
|
|
|
|
--target-list="i386-softmmu ppc64-softmmu mips64-softmmu i386-linux-user"
|
2020-05-21 06:50:10 +02:00
|
|
|
- make -j"$JOBS"
|
|
|
|
- make -j"$JOBS" check-qtest SPEED=slow
|
2019-02-13 12:54:41 +01:00
|
|
|
|
|
|
|
build-tcg-disabled:
|
2020-05-20 10:38:37 +02:00
|
|
|
image: centos:8
|
|
|
|
<<: *before_script_dnf
|
2019-02-13 12:54:41 +01:00
|
|
|
script:
|
2020-05-20 10:38:37 +02:00
|
|
|
- dnf install -y clang gtk3-devel libusbx-devel libgcrypt-devel
|
2019-12-11 15:33:49 +01:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
|
|
|
- ../configure --cc=clang --enable-werror --disable-tcg --audio-drv-list=""
|
2020-05-21 06:50:10 +02:00
|
|
|
- make -j"$JOBS"
|
2019-02-13 12:54:41 +01:00
|
|
|
- make check-unit
|
|
|
|
- make check-qapi-schema
|
|
|
|
- cd tests/qemu-iotests/
|
|
|
|
- ./check -raw 001 002 003 004 005 008 009 010 011 012 021 025 032 033 048
|
gitlab-ci: Refresh the list of iotests
iotest 147 and 205 have recently been marked as "NBD-only", so they
are currently simply skipped and thus can be removed.
iotest 129 occasionally fails in the gitlab-CI, and according to Max,
there are some known issues with this test (see for example this URL:
https://lists.nongnu.org/archive/html/qemu-block/2019-06/msg00499.html ),
so for the time being, let's disable it until the problems are fixed.
The iotests 040, 127, 203 and 256 are scheduled to become part of "make
check-block", so we also do not have to test them seperately here anymore.
On the other side, new iotests have been added to the QEMU repository
in the past months, so we can now add some new test > 256 instead.
Message-Id: <20200121131936.8214-1-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
2020-01-20 14:33:32 +01:00
|
|
|
052 063 077 086 101 104 106 113 148 150 151 152 157 159 160 163
|
|
|
|
170 171 183 184 192 194 197 208 215 221 222 226 227 236 253 277
|
|
|
|
- ./check -qcow2 028 051 056 057 058 065 067 068 082 085 091 095 096 102 122
|
|
|
|
124 132 139 142 144 145 151 152 155 157 165 194 196 197 200 202
|
|
|
|
208 209 215 216 218 222 227 234 246 247 248 250 254 255 257 258
|
|
|
|
260 261 262 263 264 270 272 273 277 279
|
2019-02-13 12:54:41 +01:00
|
|
|
|
|
|
|
build-user:
|
2020-03-12 20:36:14 +01:00
|
|
|
<<: *before_script_apt
|
2019-02-13 12:54:41 +01:00
|
|
|
script:
|
2019-12-11 15:33:49 +01:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
|
|
|
- ../configure --enable-werror --disable-system --disable-guest-agent
|
2019-02-13 12:54:41 +01:00
|
|
|
--disable-capstone --disable-slirp --disable-fdt
|
2020-05-21 06:50:10 +02:00
|
|
|
- make -j"$JOBS"
|
2019-02-13 12:54:41 +01:00
|
|
|
- make run-tcg-tests-i386-linux-user run-tcg-tests-x86_64-linux-user
|
|
|
|
|
|
|
|
build-clang:
|
2020-05-20 10:38:37 +02:00
|
|
|
image: fedora:latest
|
|
|
|
<<: *before_script_dnf
|
2019-02-13 12:54:41 +01:00
|
|
|
script:
|
2020-05-20 10:38:37 +02:00
|
|
|
- yum install -y clang SDL2-devel libattr-devel libcap-ng-devel xfsprogs-devel
|
|
|
|
libiscsi-devel libnfs-devel libseccomp-devel gnutls-devel librbd-devel
|
2019-12-11 15:33:49 +01:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
|
|
|
- ../configure --cc=clang --cxx=clang++ --enable-werror
|
2019-02-13 12:54:41 +01:00
|
|
|
--target-list="alpha-softmmu arm-softmmu m68k-softmmu mips64-softmmu
|
|
|
|
ppc-softmmu s390x-softmmu x86_64-softmmu arm-linux-user"
|
2020-05-21 06:50:10 +02:00
|
|
|
- make -j"$JOBS"
|
|
|
|
- make -j"$JOBS" check
|
2019-04-10 14:35:50 +02:00
|
|
|
|
|
|
|
build-tci:
|
2020-05-20 10:38:37 +02:00
|
|
|
image: centos:8
|
|
|
|
<<: *before_script_dnf
|
2019-04-10 14:35:50 +02:00
|
|
|
script:
|
|
|
|
- TARGETS="aarch64 alpha arm hppa m68k microblaze moxie ppc64 s390x x86_64"
|
2019-12-11 15:33:49 +01:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
|
|
|
- ../configure --enable-tcg-interpreter
|
2019-04-10 14:35:50 +02:00
|
|
|
--target-list="$(for tg in $TARGETS; do echo -n ${tg}'-softmmu '; done)"
|
2020-05-21 06:50:10 +02:00
|
|
|
- make -j"$JOBS"
|
2019-09-26 17:51:57 +02:00
|
|
|
- make run-tcg-tests-x86_64-softmmu
|
2019-09-09 12:04:01 +02:00
|
|
|
- make tests/qtest/boot-serial-test tests/qtest/cdrom-test tests/qtest/pxe-test
|
2019-04-10 14:35:50 +02:00
|
|
|
- for tg in $TARGETS ; do
|
|
|
|
export QTEST_QEMU_BINARY="${tg}-softmmu/qemu-system-${tg}" ;
|
2019-09-09 12:04:01 +02:00
|
|
|
./tests/qtest/boot-serial-test || exit 1 ;
|
|
|
|
./tests/qtest/cdrom-test || exit 1 ;
|
2019-04-10 14:35:50 +02:00
|
|
|
done
|
2019-09-09 12:04:01 +02:00
|
|
|
- QTEST_QEMU_BINARY="x86_64-softmmu/qemu-system-x86_64" ./tests/qtest/pxe-test
|
|
|
|
- QTEST_QEMU_BINARY="s390x-softmmu/qemu-system-s390x"
|
|
|
|
./tests/qtest/pxe-test -m slow
|