On 22/01/2020 02.27, Wainer dos Santos Moschetta wrote:
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
By the way, in case you respin, could you please use singel "[" instead
of "[[" ... since that's what we use in almost all other shell scripts, too.