blob: 983a6d0f572f27cdd13fd77db71561df8f646d7c [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
Milosz Wasilewski391f3972020-12-17 18:33:23 +000034 - test:
35 monitors:
36 {%- for monitor in test.monitors %}
37 - name: "{{monitor.name}}"
38 start: "{{monitor.start}}"
39 end: "{{monitor.end}}"
40 pattern: "{{monitor.pattern}}"
41 fixupdict:
42 '{{monitor.fixup.pass}}': pass
43 '{{monitor.fixup.fail}}': fail
44 {% endfor %}
Fathi Boudra31225f72020-11-25 13:51:07 +010045
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