diff options
author | Thomas Huth <thuth@redhat.com> | 2019-04-10 14:35:50 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2019-05-02 16:56:33 +0200 |
commit | 5f55d64b38cd20c97c31929f1566f38e2c5ae44b (patch) | |
tree | 86eeeb221198faaf3f0bd317ccca27428244d9d1 | |
parent | 8482ff2eb3bb95020eb2f370a9b3ea26511e41df (diff) | |
download | qemu-5f55d64b38cd20c97c31929f1566f38e2c5ae44b.zip qemu-5f55d64b38cd20c97c31929f1566f38e2c5ae44b.tar.gz qemu-5f55d64b38cd20c97c31929f1566f38e2c5ae44b.tar.bz2 |
gitlab-ci.yml: Test the TCG interpreter in a CI pipeline
So far we do not have any test coverage for TCI (the TCG interpreter) yet.
Thus let's add a CI pipeline that runs at least some basic TCG tests with
a TCI build, to make sure that there are no further regressions.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20190410123550.2362-1-thuth@redhat.com>
-rw-r--r-- | .gitlab-ci.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 79d02cf..c63bf2f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -71,3 +71,18 @@ build-clang: ppc-softmmu s390x-softmmu x86_64-softmmu arm-linux-user" - make -j2 - make -j2 check + +build-tci: + script: + - TARGETS="aarch64 alpha arm hppa m68k microblaze moxie ppc64 s390x x86_64" + - ./configure --enable-tcg-interpreter + --target-list="$(for tg in $TARGETS; do echo -n ${tg}'-softmmu '; done)" + - make -j2 + - make tests/boot-serial-test tests/cdrom-test tests/pxe-test + - for tg in $TARGETS ; do + export QTEST_QEMU_BINARY="${tg}-softmmu/qemu-system-${tg}" ; + ./tests/boot-serial-test || exit 1 ; + ./tests/cdrom-test || exit 1 ; + done + - QTEST_QEMU_BINARY="x86_64-softmmu/qemu-system-x86_64" ./tests/pxe-test + - QTEST_QEMU_BINARY="s390x-softmmu/qemu-system-s390x" ./tests/pxe-test -m slow |