File tree 1 file changed +6
-8
lines changed
1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change 15
15
16
16
jobs :
17
17
# Job Description: Performs the Data Channel Test between each combination of the client and server for each library.
18
- interop-tests :
18
+ interoptests :
19
19
runs-on : ubuntu-latest
20
20
21
21
services :
@@ -57,22 +57,20 @@ jobs:
57
57
continue-on-error : true
58
58
59
59
- name : Set output results
60
- id : set_output
60
+ id : set-output
61
61
run : |
62
- # Store this in Redis!
63
- #result_entry="${{ matrix.server }},${{ matrix.client }},${{ steps.check_connection.outputs.TEST_RESULT }}"
64
- echo "result_${{ matrix.server }}_${{ matrix.client }}=${{ steps.check_connection.outputs.TEST_RESULT }}" >> $GITHUB_OUTPUT
62
+ echo "result_${{ matrix.server }}_${{ matrix.client }}=${{ steps.check_connection.outputs.TEST_RESULT }}" >> "$GITHUB_OUTPUT"
65
63
66
64
# Job Description: Collates the results of the interop tests into a mark down table.
67
65
collate :
68
66
runs-on : ubuntu-latest
69
- needs : [interop-tests ]
67
+ needs : [interoptests ]
70
68
steps :
71
69
- uses : actions/checkout@v2
72
70
- name : Create results file from interop test outputs
73
71
run : |
74
- echo "Collating results from: "
75
- echo "results=${{ toJSON(needs.interop-tests .outputs) }}"
72
+ echo "Collating.... "
73
+ echo "results=${{ toJSON(needs.interoptests .outputs) }}"
76
74
echo "| Server | Client | Test Result |" > DataChannel_Echo_test_results.md
77
75
echo "|--------|--------|-------------|" >> DataChannel_Echo_test_results.md
78
76
You can’t perform that action at this time.
0 commit comments