Chris Kay | 7e61b4d | 2022-01-10 11:48:02 +0000 | [diff] [blame] | 1 | - job: |
| 2 | name: tf-a-test-category-visualization |
| 3 | description: >- |
| 4 | Generates a visualization of TFTF tests by their test group and category. |
| 5 | node: docker-amd64-tf-a-jammy |
| 6 | concurrent: true |
| 7 | properties: |
| 8 | - authorization: !include: authorization.yaml.inc |
| 9 | - build-discarder: |
| 10 | days-to-keep: 30 |
| 11 | parameters: |
| 12 | - string: |
| 13 | name: CI_REFSPEC |
| 14 | default: +refs/heads/master:refs/remotes/origin/master |
| 15 | - string: |
| 16 | name: FILTER |
| 17 | default: |
| 18 | description: Optional job/group filter string (e.g. <code>juno</code>). |
| 19 | builders: |
| 20 | - shell: !include-raw: scripts/clone.sh |
| 21 | - shell: | |
| 22 | mkdir -p output |
| 23 | |
| 24 | cd tf-a-ci-scripts && |
| 25 | bash script/graphs/categorize-tests.bash ${FILTER} \ |
| 26 | > ../output.png 2> ../output.tsv |
| 27 | publishers: |
| 28 | - archive: |
| 29 | artifacts: output.* |