From 7f22582590b5816878e7f3f860766979cab297a0 Mon Sep 17 00:00:00 2001 From: Andreea Florescu Date: Thu, 23 Sep 2021 16:51:00 +0300 Subject: [PATCH] update container version to v13 In the new container version we're using ubuntu 20.04 as the base image instead of ubuntu 18.04. Signed-off-by: Andreea Florescu --- .buildkite/autogenerate_pipeline.py | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.buildkite/autogenerate_pipeline.py b/.buildkite/autogenerate_pipeline.py index 9562532..733b8c1 100755 --- a/.buildkite/autogenerate_pipeline.py +++ b/.buildkite/autogenerate_pipeline.py @@ -60,7 +60,7 @@ from textwrap import dedent # This represents the version of the rust-vmm-container used # for running the tests. -CONTAINER_VERSION = "v12" +CONTAINER_VERSION = "v13" # This represents the version of the Buildkite Docker plugin. DOCKER_PLUGIN_VERSION = "v3.8.0" diff --git a/README.md b/README.md index 9631cb0..43e2395 100644 --- a/README.md +++ b/README.md @@ -126,7 +126,7 @@ steps: platform: x86_64.metal plugins: - docker#v3.8.0: - image: rustvmm/dev:v12 + image: rustvmm/dev:v13 always-pull: true timeout_in_minutes: 5 ``` @@ -253,7 +253,7 @@ steps: platform: arm.metal plugins: - docker#v3.8.0: - image: rustvmm/dev:v12 + image: rustvmm/dev:v13 always-pull: true ``` @@ -312,7 +312,7 @@ that autogenerates the pipeline. For example: ```bash cd ~/vm-superio CRATE="vm-superio" -LATEST=12 +LATEST=13 docker run -it \ --security-opt seccomp=unconfined \ --volume $(pwd):/${CRATE} \