Fathi Boudra | 31225f7 | 2020-11-25 13:51:07 +0100 | [diff] [blame] | 1 | {#------------------------------------------------------------------------------ |
| 2 | # Copyright (c) 2020, Arm Limited and Contributors. All rights reserved. |
| 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | #-----------------------------------------------------------------------------#} |
| 7 | device_type: {{ device_type }} |
| 8 | job_name: {{ job_name }} |
| 9 | |
| 10 | timeouts: |
| 11 | action: |
| 12 | minutes: {{ action_timeout }} |
| 13 | actions: |
| 14 | power-off: |
| 15 | seconds: {{ poweroff_timeout }} |
| 16 | job: |
| 17 | minutes: {{ job_timeout }} |
| 18 | |
| 19 | priority: medium |
| 20 | visibility: public |
| 21 | |
| 22 | actions: |
| 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 Wasilewski | 391f397 | 2020-12-17 18:33:23 +0000 | [diff] [blame^] | 34 | - 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 Boudra | 31225f7 | 2020-11-25 13:51:07 +0100 | [diff] [blame] | 45 | |
| 46 | metadata: |
| 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 | |