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
- echo "GITHUB_ENV=$GITHUB_ENV"
52
- echo "RESULTS=$RESULTS"
51
+ echo "GITHUB_ENV=${{ GITHUB_ENV }} "
52
+ echo "RESULTS=${{ RESULTS || "
53
53
echo "env.RESULTS=${{ env.RESULTS }}"
54
54
55
55
# Job Description: Collates the results of the interop tests into a mark down table.
@@ -63,10 +63,10 @@ jobs:
63
63
- name : Create results file from environment variable
64
64
run : |
65
65
echo "Collating results..."
66
- echo "| Server | Client | Test Result |" > results .md
67
- echo "|--------|--------|-------------|" >> results .md
66
+ echo "| Server | Client | Test Result |" > DataChannel_Echo_test_results .md
67
+ echo "|--------|--------|-------------|" >> DataChannel_Echo_test_results .md
68
68
for result in ${{ env.RESULTS }}; do
69
- echo "| ${result[0]} | ${result[1]} | ${result[2]} |" >> results .md
69
+ echo "| ${result[0]} | ${result[1]} | ${result[2]} |" >> DataChannel_Echo_test_results .md
70
70
done
71
71
cat DataChannel_Echo_test_results.md
72
72
- name : Commit the results to the git repository
77
77
git pull
78
78
#git add DataChannel_Echo_test_results.md DataChannel_Echo_test_results.png
79
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."
80
+ # git add DataChannel_Echo_test_results.md
81
+ git commit DataChannel_Echo_test_results.md -m "Automated data channel echo test results."
82
82
git push
0 commit comments