48
48
# echo "${{ matrix.server }},${{ matrix.client }},${{ steps.check_connection.outputs.TEST_RESULT }}" >> ${{ matrix.server }}_${{ matrix.client }}_result.csv
49
49
# Append the result to the environment variable
50
50
echo "RESULTS+=['${{ matrix.server }}','${{ matrix.client }}','${{ steps.check_connection.outputs.TEST_RESULT }}']" >> $GITHUB_ENV
51
- - name : Upload result
52
- uses : actions/upload-artifact@v4
53
- with :
54
- name : results-${{ matrix.server }}-${{ matrix.client }}-${{ github.run_id }}
55
- path : |
56
- ${{ matrix.server }}_${{ matrix.client }}_result.csv
51
+ echo "GITHUB_ENV=$GITHUB_ENV"
52
+ echo "RESULTS=$RESULTS"
53
+ echo "env.RESULTS=${{ env.RESULTS }}"
57
54
58
55
# Job Description: Collates the results of the interop tests into a mark down table.
59
56
collate :
@@ -71,13 +68,15 @@ jobs:
71
68
for result in ${{ env.RESULTS }}; do
72
69
echo "| ${result[0]} | ${result[1]} | ${result[2]} |" >> results.md
73
70
done
74
- cat results .md
71
+ cat DataChannel_Echo_test_results .md
75
72
- name : Commit the results to the git repository
76
73
if : github.event_name != 'pull_request'
77
74
run : |
78
75
git config user.name github-actions
79
76
git config user.email [email protected]
80
77
git pull
81
- git add DataChannel_Echo_test_results.md DataChannel_Echo_test_results.png
82
- git commit DataChannel_Echo_test_results.md DataChannel_Echo_test_results.png -m "Automated data channel echo test results."
78
+ #git add DataChannel_Echo_test_results.md DataChannel_Echo_test_results.png
79
+ #git commit DataChannel_Echo_test_results.md DataChannel_Echo_test_results.png -m "Automated data channel echo test results."
80
+ git add DataChannel_Echo_test_results.md
81
+ git add DataChannel_Echo_test_results.md -m "Automated data channel echo test results."
83
82
git push
0 commit comments