Enable LAVA test job submission for Cypress PSoC64 platform
Signed-off-by: Arthur She <arthur.she@linaro.org>
Change-Id: Ibb7dc1fe7e17889093c7f1d6805dcf1296514501
diff --git a/lava_helper/lava_create_jobs.py b/lava_helper/lava_create_jobs.py
index 83be77d..f922a73 100755
--- a/lava_helper/lava_create_jobs.py
+++ b/lava_helper/lava_create_jobs.py
@@ -149,6 +149,16 @@
params,
test_dict.get("binaries").get("tarball"),
),
+ "spe_url": get_artifact_url(
+ artifact_store_url,
+ params,
+ test_dict.get("binaries").get("spe_image"),
+ ),
+ "nspe_url": get_artifact_url(
+ artifact_store_url,
+ params,
+ test_dict.get("binaries").get("nspe_image"),
+ ),
}
)
params.update(
@@ -189,7 +199,6 @@
config["platforms"] = {platform: config["platforms"][platform]}
# Generate the output definition
definitions = generate_test_definitions(config, work_dir, user_args)
-
# Write it into a file
out_dir = os.path.abspath(user_args.lava_def_output)
os.makedirs(out_dir, exist_ok=True)