From fec3c240e39a23bd5789281c0c38b03a1c1c646c Mon Sep 17 00:00:00 2001 From: "Martine S. Lenders" Date: Sat, 12 Aug 2023 11:19:08 +0200 Subject: [PATCH] gh-actions: remove reporting release tests to Matrix This reverts commits 98100704ab74 and 764f7f0bf4cf. --- .github/workflows/release-test.yml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.github/workflows/release-test.yml b/.github/workflows/release-test.yml index 5157f4c262..ce3152f5e6 100644 --- a/.github/workflows/release-test.yml +++ b/.github/workflows/release-test.yml @@ -123,7 +123,6 @@ jobs: sudo apt-get install lib32asan6 - name: Run release tests timeout-minutes: 350 - id: tests run: | RIOTBASE="$GITHUB_WORKSPACE/RIOT" TOX_ARGS="" @@ -174,27 +173,6 @@ 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: fadenb/matrix-chat-message@v0.0.6 - with: - homeserver: matrix.org - token: ${{ secrets.RIOT_CI_MATRIX_TOKEN }} - channel: '!UXNJuMzHTSAnwntbbN:utwente.io' - message: | - ${{ steps.generate_results.outputs.nice_str}}: Release tests - [${{ matrix.pytest_mark }}, ${{ matrix.sudo }}] on "*${{ github.event_name }}*": - ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} - uses: actions/upload-artifact@v2 if: always() with: