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: |
Chris Kay | 7e61b4d | 2022-01-10 11:48:02 +0000 | [diff] [blame] | 8 | - build-discarder: |
| 9 | days-to-keep: 30 |
| 10 | parameters: |
| 11 | - string: |
| 12 | name: CI_REFSPEC |
| 13 | default: +refs/heads/master:refs/remotes/origin/master |
| 14 | - string: |
Saheer Babu | b495f03 | 2025-01-21 23:01:11 +0000 | [diff] [blame] | 15 | name: JOBS_REFSPEC |
| 16 | default: 'refs/heads/master' |
| 17 | description: | |
| 18 | tf-a-job-configs refspec to use. The master branch is used by default. |
| 19 | - string: |
Chris Kay | 7e61b4d | 2022-01-10 11:48:02 +0000 | [diff] [blame] | 20 | name: FILTER |
| 21 | default: |
| 22 | description: Optional job/group filter string (e.g. <code>juno</code>). |
| 23 | builders: |
| 24 | - shell: !include-raw: scripts/clone.sh |
| 25 | - shell: | |
| 26 | mkdir -p output |
| 27 | |
| 28 | cd tf-a-ci-scripts && |
| 29 | bash script/graphs/categorize-tests.bash ${FILTER} \ |
| 30 | > ../output.png 2> ../output.tsv |
| 31 | publishers: |
| 32 | - archive: |
| 33 | artifacts: output.* |