From 0a91c4077ba6062388820b4a6d9b2da129ad7925 Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Wed, 20 Dec 2023 22:11:49 -0500 Subject: [PATCH] builder.py: Use TMT_TEST_DATA for storing artifacts for CI The contents of TMT_PLAN_DATA does not get exposed in the CI artifacts output UI, whereas TMT_TEST_DATA does. --- builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder.py b/builder.py index 196e042..87acaa3 100755 --- a/builder.py +++ b/builder.py @@ -195,7 +195,7 @@ def tmtCopy(target): image = f"{base}.raw.zst" manifest = f"{base}.json" - artifacts = os.getenv("TMT_PLAN_DATA") + artifacts = os.getenv("TMT_TEST_DATA") if not os.path.exists(artifacts): os.mkdir(artifacts)