Skip to content

Commit 828a2b7

Browse files
committedOct 11, 2024··
Fix.
1 parent e443e50 commit 828a2b7

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed
 

‎.github/workflows/datachannel_echo-test.yml

+6-8
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515

1616
jobs:
1717
# Job Description: Performs the Data Channel Test between each combination of the client and server for each library.
18-
interop-tests:
18+
interoptests:
1919
runs-on: ubuntu-latest
2020

2121
services:
@@ -57,22 +57,20 @@ jobs:
5757
continue-on-error: true
5858

5959
- name: Set output results
60-
id: set_output
60+
id: set-output
6161
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"
6563
6664
# Job Description: Collates the results of the interop tests into a mark down table.
6765
collate:
6866
runs-on: ubuntu-latest
69-
needs: [interop-tests]
67+
needs: [interoptests]
7068
steps:
7169
- uses: actions/checkout@v2
7270
- name: Create results file from interop test outputs
7371
run: |
74-
echo "Collating results from:"
75-
echo "results=${{ toJSON(needs.interop-tests.outputs) }}"
72+
echo "Collating...."
73+
echo "results=${{ toJSON(needs.interoptests.outputs) }}"
7674
echo "| Server | Client | Test Result |" > DataChannel_Echo_test_results.md
7775
echo "|--------|--------|-------------|" >> DataChannel_Echo_test_results.md
7876

0 commit comments

Comments
 (0)
Please sign in to comment.