blob: f8afd283bb9df445ec4f6cf9c520b951eece1796 [file] [log] [blame]
Fathi Boudra31225f72020-11-25 13:51:07 +01001{#------------------------------------------------------------------------------
2# Copyright (c) 2020, Arm Limited and Contributors. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6#-----------------------------------------------------------------------------#}
7device_type: {{ device_type }}
8job_name: {{ job_name }}
9
10timeouts:
11 action:
12 minutes: {{ action_timeout }}
13 actions:
14 power-off:
15 seconds: {{ poweroff_timeout }}
16 job:
17 minutes: {{ job_timeout }}
18
19priority: medium
20visibility: public
21
22actions:
23 - deploy:
24 timeout:
25 minutes: 6
26 to: musca
27 images:
28 test_binary:
29 url: {{ firmware_url }}
30
31 - boot:
32 method: musca
33
34 # Monitors example
35# - test:
36# namespace: target
37# monitors:
38# - name: "Secure_Test_Suites_Summary_AN521_ARMCLANG_Regression_Debug_BL2"
39# start: "Secure test suites summary"
40# end: "End of Secure test suites"
41# pattern: "[\x1b]\\[37mTest suite '(?P<test_case_id>.*)' has [\x1b]\\[32m (?P<result>PASSED|FAILED)"
42# fixupdict:
43# 'PASSED': pass
44# 'FAILED': fail
45
46metadata:
47 build_no: {{ build_no }}
48 compiler: {{ compiler }}
49 build_type: {{ build_type }}
50 boot_type: {{ boot_type }}
51 name: {{ name }}
52 platform: {{ platform }}
53 build_name: {{ build_name }}
54 build_job_url: {{ build_job_url }}
55