From 0a91c4077ba6062388820b4a6d9b2da129ad7925 Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Dec 21 2023 03:11:49 +0000 Subject: 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. --- 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)