[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 4/4] travis.yml: Enable acceptance KVM tests
From: |
Wainer dos Santos Moschetta |
Subject: |
[PATCH v3 4/4] travis.yml: Enable acceptance KVM tests |
Date: |
Tue, 21 Jan 2020 22:27:53 -0300 |
Some acceptance tests require KVM or they are skipped. Travis
enables nested virtualization by default with Ubuntu
18.04 (Bionic) on x86_64. So in order to run the kvm tests, this
changed the acceptance builder to run in a Bionic VM. Also
it was needed to ensure the current user has rw permission
to /dev/kvm.
Signed-off-by: Wainer dos Santos Moschetta <address@hidden>
---
.travis.yml | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/.travis.yml b/.travis.yml
index 6c1038a0f1..c3edd0a907 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,6 +2,7 @@
# Additional builds with specific requirements for a full VM need to
# be added as additional matrix: entries later on
dist: xenial
+sudo: true
language: c
compiler:
- gcc
@@ -83,6 +84,9 @@ git:
before_script:
- if command -v ccache ; then ccache --zero-stats ; fi
+ - if [[ -e /dev/kvm ]] && ! [[ -r /dev/kvm && -w /dev/kvm ]]; then
+ sudo chmod o+rw /dev/kvm ;
+ fi
- mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
- ${SRC_DIR}/configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit
1; }
script:
@@ -272,12 +276,13 @@ matrix:
- TEST_CMD="make check-acceptance"
after_script:
- python3 -c 'import json; r =
json.load(open("tests/results/latest/results.json")); [print(t["logfile"]) for
t in r["tests"] if t["status"] not in ("PASS", "SKIP")]' | xargs cat
+ dist: bionic
addons:
apt:
packages:
- python3-pil
- python3-pip
- - python3.5-venv
+ - python3.6-venv
- tesseract-ocr
- tesseract-ocr-eng
--
2.23.0
- Re: [PATCH v3 1/4] tests/acceptance: avocado_qemu: Introduce the 'accel' test parameter, (continued)
[PATCH v3 2/4] tests/acceptance: boot_linux_console: Add boot Linux with kvm tests, Wainer dos Santos Moschetta, 2020/01/21
Re: [PATCH v3 2/4] tests/acceptance: boot_linux_console: Add boot Linux with kvm tests, Philippe Mathieu-Daudé, 2020/01/24
[PATCH v3 3/4] tests/acceptance: avocado_qemu: Refactor the handler of 'machine' parameter, Wainer dos Santos Moschetta, 2020/01/21
[PATCH v3 4/4] travis.yml: Enable acceptance KVM tests,
Wainer dos Santos Moschetta <=
Re: [PATCH v3 4/4] travis.yml: Enable acceptance KVM tests, Philippe Mathieu-Daudé, 2020/01/24