mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
a206970b08
add xml publisher action to GitHub Actions workflow for linux tests
33 lines
1.3 KiB
YAML
33 lines
1.3 KiB
YAML
name: 'Report'
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ['Linux'] # runs after CI workflow
|
|
types:
|
|
- completed
|
|
jobs:
|
|
report:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
cfg:
|
|
#-------- Operating Systems ----------------
|
|
- { os: ubuntu, tag: 18.04, arch: debian, arch_ver: 10 }
|
|
- { os: ubuntu, tag: 20.04, arch: debian, arch_ver: 11 }
|
|
- { os: debian, tag: 10, arch: debian, arch_ver: 10 }
|
|
- { os: debian, tag: 11, arch: debian, arch_ver: 11 }
|
|
- { os: centos, tag: 7, arch: rhel, arch_ver: 7 }
|
|
- { os: rockylinux, tag: 8, arch: rhel, arch_ver: 8 }
|
|
- { os: oraclelinux, tag: 8, arch: rhel, arch_ver: 8 }
|
|
- { os: almalinux, tag: 8, arch: rhel, arch_ver: 8 }
|
|
python: [2, 3]
|
|
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dorny/test-reporter@v1
|
|
with:
|
|
artifact: Trick_${{matrix.cfg.os}}${{matrix.cfg.tag}}_py${{matrix.python}} # artifact name
|
|
name: Results_Trick_${{matrix.cfg.os}}${{matrix.cfg.tag}}_py${{matrix.python}} # Name of the check run which will be created
|
|
path: '*.xml' # Path to test results (inside artifact .zip)
|
|
reporter: java-junit # Format of test results
|