0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-05-20 20:43:45 +02:00

github actions: summarize Sytest results in an easy-to-read format (#10094)

... using the script from matrix-org/sytest#1052
This commit is contained in:
Richard van der Hoff 2021-06-02 17:10:37 +01:00 committed by GitHub
parent fc3d2dc269
commit bf6fd9f4fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -232,9 +232,9 @@ jobs:
- name: Run SyTest
run: /bootstrap.sh synapse
working-directory: /src
- name: Dump results.tap
- name: Summarise results.tap
if: ${{ always() }}
run: cat /logs/results.tap
run: /sytest/scripts/tap_to_gha.pl /logs/results.tap
- name: Upload SyTest logs
uses: actions/upload-artifact@v2
if: ${{ always() }}

1
changelog.d/10094.misc Normal file
View file

@ -0,0 +1 @@
In Github Actions workflows, summarize the Sytest results in an easy-to-read format.