From 3684b95c99d35d6775335424946e22c1a92ca4c3 Mon Sep 17 00:00:00 2001 From: Guy Menanteau Date: May 25 2021 10:08:58 +0000 Subject: Add tar.xz for PowerPC Container Signed-off-by: Guy Menanteau --- diff --git a/sample-configs/images.json.sample b/sample-configs/images.json.sample index 528a612..222894e 100644 --- a/sample-configs/images.json.sample +++ b/sample-configs/images.json.sample @@ -249,6 +249,22 @@ }, { "match": { + "subvariant": "Container_Base", + "type": "docker", + "format": "tar.xz", + "arch": "ppc64le" + } + }, + { + "match": { + "subvariant": "Container_Minimal_Base", + "type": "docker", + "format": "tar.xz", + "arch": "ppc64le" + } + }, + { + "match": { "subvariant": "Server", "type": "boot", "format": "iso", diff --git a/src/fedora_openqa/schedule.py b/src/fedora_openqa/schedule.py index de65a3a..a1b954b 100644 --- a/src/fedora_openqa/schedule.py +++ b/src/fedora_openqa/schedule.py @@ -53,6 +53,7 @@ FORMAT_TO_PARAM_PPC = { "iso": "ISO_URL", "raw.xz": "HDD_1_DECOMPRESS_URL", "qcow2": "HDD_1_URL", + "tar.xz": "HDD_1_URL", }