From 3639af23570f036b7240657f5df4ca6687f30742 Mon Sep 17 00:00:00 2001 From: Jake Hunsaker Date: Wed, 5 Jan 2022 10:59:44 -0500 Subject: [cirrus,tests] Update testing matrix to Fedora 35 F35 has been out for a bit, we should update our testing matrix accordingly. New images have been pushed to GCP, so this change updates Cirrus to use those new images. Note this adds installation of pip to Fedora test VMs as well rather than baking that into the images. Ethtool is now also explicitly installed. Signed-off-by: Jake Hunsaker --- .cirrus.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to '.cirrus.yml') diff --git a/.cirrus.yml b/.cirrus.yml index f36ec816..4fd40259 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -3,8 +3,8 @@ # Main environment vars to set for all tasks env: - FEDORA_VER: "34" - FEDORA_PRIOR_VER: "33" + FEDORA_VER: "35" + FEDORA_PRIOR_VER: "34" FEDORA_NAME: "fedora-${FEDORA_VER}" FEDORA_PRIOR_NAME: "fedora-${FEDORA_PRIOR_VER}" @@ -112,6 +112,7 @@ report_stageone_task: fi if [ $(command -v dnf) ]; then dnf -y remove sos + dnf -y install python3-pip ethtool fi setup_script: &setup 'pip3 install avocado-framework' # run the unittests separately as they require a different PYTHONPATH in -- cgit