Remove STM32L562E-DK from LAVA test
Since all STM32L562E-DK devices have been retired
from the TF LAVA, remove it from the LAVA tests. [1]
[1]: https://linaro.atlassian.net/browse/TFC-786
Signed-off-by: Arthur She <arthur.she@linaro.org>
Change-Id: I3941fe9e0a1c5cae5ae3741dac3fb41855517a7d
diff --git a/lava_helper/jinja2_templates/stm32l562e_dk.jinja2 b/lava_helper/jinja2_templates/stm32l562e_dk.jinja2
deleted file mode 100644
index 8b9426d..0000000
--- a/lava_helper/jinja2_templates/stm32l562e_dk.jinja2
+++ /dev/null
@@ -1,47 +0,0 @@
-{#------------------------------------------------------------------------------
-# Copyright (c) 2020-2024, Arm Limited and Contributors. All rights reserved.
-#
-# SPDX-License-Identifier: BSD-3-Clause
-#
-#-----------------------------------------------------------------------------#}
-{% extends 'jinja2_templates/base.jinja2' %}
-{% block actions %}
-actions:
- - deploy:
- timeout:
- minutes: 12
- to: flasher
- images:
-{% for name, img in binaries.items() %}
- {{ name }}:
- url: {{ data_url_prefix }}/{{ img.data }}
-{% endfor %}
-
- - boot:
- method: musca
-
- - test:
- monitors:
- {%- for monitor in monitors %}
- - name: "{{monitor.name}}"
- start: "{{monitor.start}}"
- end: "{{monitor.end}}"
- pattern: "{{monitor.pattern}}"
- fixupdict:
- '{{monitor.fixup.pass}}': pass
- '{{monitor.fixup.fail}}': fail
- {%- if monitor.fixup.skip %}
- '{{monitor.fixup.skip}}': skip
- {%- endif %}
- {% endfor %}
-{% endblock %}
-
-{% block metadata %}
-metadata:
- build_no: {{ build_no }}
- name: {{ name }}
- platform: {{ platform }}
- build_name: {{ build_name }}
- device_type: {{ device_type }}
- build_job_url: {{ build_job_url }}
-{% endblock %}
diff --git a/lava_helper/lava_helper_configs.py b/lava_helper/lava_helper_configs.py
index 37ca4a1..7cb6356 100644
--- a/lava_helper/lava_helper_configs.py
+++ b/lava_helper/lava_helper_configs.py
@@ -437,27 +437,6 @@
}
}
-# STM32L562E-DK
-stm32l562e_dk = {
- "templ": "stm32l562e_dk.jinja2",
- "job_name": "stm32l562e_dk",
- "device_type": "stm32l562e-dk",
- "job_timeout": 24,
- "notification_email": "tf-m-ci-notifications@lists.trustedfirmware.org",
- "action_timeout": 15,
- "monitor_timeout": 15,
- "poweroff_timeout": 5,
- "platforms": {"stm/stm32l562e_dk": ""},
- "binaries": {
- "tarball": {
- "data": "spe/api_ns/bin/stm32l562e-dk-tfm.tar.bz2"
- }
- },
- "monitors": {
- 'reg_tests': reg_tests_monitors,
- }
-}
-
# STM32U5 B-U585I-IOT02A
b_u585i_iot02a = {
"templ": "b_u585i_iot02a.jinja2",
@@ -560,7 +539,6 @@
"fvp_rse_tc4": fvp_rse_tc4,
"qemu_mps2_bl2": qemu_mps2_bl2,
"musca_b1": musca_b1_bl2,
- "stm32l562e_dk": stm32l562e_dk,
"b_u585i_iot02a": b_u585i_iot02a,
"stm32h573i_dk": stm32h573i_dk
}