-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20424 from miri64/gh-actions/enh/matrix-notification
release-test.yml: return of the Matrix notification
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -130,6 +130,7 @@ jobs: | |
sudo apt-get update | ||
sudo apt-get install lib32asan6 | ||
- name: Run release tests | ||
id: tests | ||
timeout-minutes: 350 | ||
run: | | ||
RIOTBASE="$GITHUB_WORKSPACE/RIOT" | ||
|
@@ -181,6 +182,27 @@ jobs: | |
mkdir test-reports/ | ||
junit2html ${REPORT_XML} ${REPORT_NAME}.html | ||
cp ${REPORT_XML} ${REPORT_NAME}.xml | ||
- name: Generate result message | ||
if: always() | ||
id: generate_results | ||
run: | | ||
if [ "${{ steps.tests.conclusion }}" == "success" ]; then | ||
nice_str="✅ **PASSED**" | ||
elif [ "${{ steps.tests.conclusion }}" == "failure" ]; then | ||
nice_str="❌ **FAILED**" | ||
fi | ||
echo "nice_str=${nice_str}" >> ${GITHUB_OUTPUT} | ||
- name: Report to Matrix channel | ||
if: ${{ always() && steps.generate_results.outputs.nice_str != '' }} | ||
uses: s3krit/[email protected] | ||
with: | ||
room_id: ${{ secrets.RIOT_CI_RELEASE_REPORT_CHANNEL }} | ||
access_token: ${{ secrets.MATRIX_RIOT_CI_ACCESS_TOKEN }} | ||
server: "matrix.org" | ||
message: > | ||
${{ steps.generate_results.outputs.nice_str}}: Release tests | ||
`[${{ join(matrix.*, ', ') }}]` on `${{ github.event_name }}`: | ||
${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
- uses: actions/upload-artifact@v2 | ||
if: always() | ||
with: | ||
|