Fathi Boudra | 83e4f29 | 2020-12-04 22:33:40 +0100 | [diff] [blame] | 1 | {#------------------------------------------------------------------------------ |
| 2 | # Copyright (c) 2019-2020, Arm Limited and Contributors. All rights reserved. |
| 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | #-----------------------------------------------------------------------------#} |
| 7 | actions: |
| 8 | - deploy: |
| 9 | images: |
| 10 | mcuboot: {image_arg: '-device loader,file={mcuboot},addr=0x10000000', url: '{{ bootloader_url }}'} |
| 11 | tfm: {image_arg: '-device loader,file={tfm},addr=0x10080000', url: '{{ firmware_url }}'} |
| 12 | timeout: {seconds: 100} |
| 13 | to: tmpfs |
| 14 | - boot: |
Fathi Boudra | 2abf97e | 2020-12-17 11:45:22 +0100 | [diff] [blame] | 15 | docker: {binary: /usr/bin/qemu-system-arm, image: 'trustedfirmware/ci-amd64-tf-m-qemu-debian:bullseye'} |
Fathi Boudra | 83e4f29 | 2020-12-04 22:33:40 +0100 | [diff] [blame] | 16 | method: qemu |
| 17 | timeout: {seconds: 300} |
| 18 | - test: |
| 19 | monitors: |
| 20 | - name: wait-finish |
| 21 | start: "Non-Secure system starting" |
| 22 | end: "End of Non-secure test suites" |
| 23 | pattern: "[\x1b]\\[37mTest suite '(?P<test_case_id>.*?)' has [\x1b]\\[32m (?P<result>PASSED|FAILED)" |
| 24 | fixupdict: |
| 25 | PASSED: pass |
| 26 | FAILED: fail |
Paul Sokolovsky | 18f110e | 2022-01-31 23:45:43 +0300 | [diff] [blame] | 27 | SKIPPED: skip |
Fathi Boudra | 83e4f29 | 2020-12-04 22:33:40 +0100 | [diff] [blame] | 28 | timeout: {seconds: 300} |
| 29 | |
| 30 | context: |
| 31 | arch: arm |
| 32 | cpu: 'cortex-m33' |
| 33 | machine: mps2-an521 |
| 34 | serial: '-serial mon:stdio' |
| 35 | vga: '-vga none' |
| 36 | memory: 16M |
| 37 | model: model=lan9118 |
| 38 | |
| 39 | device_type: {{ device_type }} |
| 40 | job_name: {{ job_name }} |
| 41 | priority: medium |
| 42 | timeouts: |
| 43 | action: {seconds: 300} |
| 44 | job: {seconds: 300} |
| 45 | visibility: public |
| 46 | |
| 47 | metadata: |
| 48 | build_no: {{ build_no }} |
| 49 | compiler: {{ compiler }} |
| 50 | build_type: {{ build_type }} |
| 51 | boot_type: {{ boot_type }} |
| 52 | name: {{ name }} |
| 53 | platform: {{ platform }} |
| 54 | build_name: {{ build_name }} |
| 55 | build_job_url: {{ build_job_url }} |
| 56 | |