File tree 1 file changed +8
-5
lines changed
1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -70,13 +70,16 @@ jobs:
70
70
- name : Create results file from interop test outputs
71
71
run : |
72
72
echo "Collating...."
73
- echo "results=${{ toJSON(needs.interoptests.outputs) }}"
73
+
74
+ results="${{ toJSON(needs.interop-tests.outputs) }}"
75
+ echo "results=${results}"
76
+
74
77
echo "| Server | Client | Test Result |" > DataChannel_Echo_test_results.md
75
78
echo "|--------|--------|-------------|" >> DataChannel_Echo_test_results.md
76
79
77
- # Define the server and client combinations
78
- servers=("libdatachannel" "sipsorcery" "werift")
79
- clients=("libdatachannel" "sipsorcery" "werift")
80
+ echo "$results" | jq -r 'to_entries | .[] |
81
+ capture("result_(?<server>.+)_(?<client>.+)") |
82
+ "\(.server) | \(.client) | \(.value) |"' >> DataChannel_Echo_test_results.md
80
83
81
84
cat DataChannel_Echo_test_results.md
82
85
88
91
git pull
89
92
#git add DataChannel_Echo_test_results.md DataChannel_Echo_test_results.png
90
93
#git commit DataChannel_Echo_test_results.md DataChannel_Echo_test_results.png -m "Automated data channel echo test results."
91
- # git add DataChannel_Echo_test_results.md
94
+ git add DataChannel_Echo_test_results.md
92
95
git commit DataChannel_Echo_test_results.md -m "Automated data channel echo test results."
93
96
git push
You can’t perform that action at this time.
0 commit comments