diff options
author | Thomas Huth <thuth@redhat.com> | 2024-06-24 11:48:07 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2024-07-02 09:47:47 +0200 |
commit | 5e8881c2d27db8a1e3924d604f0507b1186fb3a8 (patch) | |
tree | 4259cf036e3e7b4fd958096413ea83b30297dc55 | |
parent | 99a28bd50fff03ef0bc2570ed3082c1e7e1be0bf (diff) | |
download | qemu-5e8881c2d27db8a1e3924d604f0507b1186fb3a8.zip qemu-5e8881c2d27db8a1e3924d604f0507b1186fb3a8.tar.gz qemu-5e8881c2d27db8a1e3924d604f0507b1186fb3a8.tar.bz2 |
.travis.yml: Install python3-tomli in all build jobs
Since commit 1f97715c83 ('Revert "python: use vendored tomli"')
this package is a hard requirement for compiling QEMU, so install
it now in all Travis jobs, too.
Message-ID: <20240624094807.182313-1-thuth@redhat.com>
Acked-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index cef0308..8fc1ae0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -106,6 +106,7 @@ jobs: - libvdeplug-dev - libvte-2.91-dev - ninja-build + - python3-tomli # Tests dependencies - genisoimage env: @@ -141,6 +142,7 @@ jobs: - libvdeplug-dev - libvte-2.91-dev - ninja-build + - python3-tomli # Tests dependencies - genisoimage env: @@ -175,6 +177,7 @@ jobs: - libvdeplug-dev - libvte-2.91-dev - ninja-build + - python3-tomli # Tests dependencies - genisoimage env: @@ -215,6 +218,7 @@ jobs: - libzstd-dev - nettle-dev - ninja-build + - python3-tomli # Tests dependencies - genisoimage env: @@ -231,6 +235,7 @@ jobs: - ninja-build - flex - bison + - python3-tomli env: - TEST_CMD="make check check-tcg V=1" - CONFIG="--disable-containers --disable-system" @@ -263,6 +268,7 @@ jobs: - libvdeplug-dev - libvte-2.91-dev - ninja-build + - python3-tomli env: - TEST_CMD="make check-unit" - CONFIG="--disable-containers --disable-tcg --enable-kvm --disable-tools |