Run tests with rustvmm/dev:v3

The container now runs Rust 1.35. This is needed as versions 1.34.0
up to 1.34.2 (which is the first one to include a fix) have a security
vulnerability.

For details check the CVE: https://www.cvedetails.com/cve/CVE-2019-12083/

Signed-off-by: Andreea Florescu <fandree@amazon.com>
This commit is contained in:
Andreea Florescu
2019-06-27 11:55:47 +03:00
committed by Samuel Ortiz
parent 6c471c6c3a
commit 8b60273cef
2 changed files with 17 additions and 17 deletions

View File

@@ -73,7 +73,7 @@ steps:
platform: x86_64.metal
plugins:
- docker#v3.0.1:
image: "rustvmm/dev:v2"
image: "rustvmm/dev:v3"
always-pull: true
```
@@ -105,7 +105,7 @@ steps:
platform: x86_64.metal
plugins:
- docker#v3.0.1:
image: "rustvmm/dev:v2"
image: "rustvmm/dev:v3"
always-pull: true
```
@@ -188,7 +188,7 @@ docker run --device=/dev/kvm \
-it \
--security-opt seccomp=unconfined \
--volume $(pwd)/kvm-ioctls:/kvm-ioctls \
rustvmm/dev:v2
rustvmm/dev:v3
cd kvm-ioctls/
pytest --profile=devel tests/test_coverage.py
```