test-windows-iis-reporter #561
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
## Workflow to process the JUnit test results and add a report to the checks. | |
name: test-windows-iis-reporter | |
on: | |
workflow_run: | |
workflows: | |
- test-windows-iis | |
types: | |
- completed | |
permissions: | |
contents: write | |
jobs: | |
report: | |
runs-on: ubuntu-latest | |
name: IIS Test Summary | |
# disable IIS on CI for now. | |
# Run locally and started failing randomly on github actions | |
# Could be because of plethora of reasons including no disk space | |
# Requires longer investigation | |
if: ${{ false }} | |
steps: | |
- uses: elastic/apm-pipeline-library/.github/actions/test-report@current | |
with: | |
artifact: test-results-iis # artifact name | |
name: IIS Tests Summary # Name of the check run which will be created | |
path: "junit-*.xml" # Path to test results (inside artifact .zip) | |
reporter: java-junit # Format of test results | |
list-suites: 'failed' | |
list-tests: 'failed' | |
# output-to: 'step-summary' |