Skip to content

Commit

Permalink
Again
Browse files Browse the repository at this point in the history
  • Loading branch information
larseggert committed Jul 19, 2024
1 parent b967165 commit 3d7e58b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
8 changes: 2 additions & 6 deletions .github/actions/quic-interop-runner/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,21 +90,17 @@ runs:
path: logs
compression-level: 9

- name: Store other info
- name: Store log URL
run: |
jq '. + {log_url: "${{ steps.upload-logs.outputs.artifact-url }}"}' \
< result.json > result.json.tmp && \
mv result.json.tmp result.json
echo "${{ inputs.client }}" >> client
echo "${{ inputs.server }}" >> server
shell: bash

- uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
with:
name: '${{ inputs.client }} vs. ${{ inputs.server }} results'
retention-days: 1
path: |
result.json
summary.txt
client
server
retention-days: 1
7 changes: 1 addition & 6 deletions .github/workflows/qns.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,17 +168,12 @@ jobs:
path: results

- run: |
ls -l results
mapfile -t LIST < <(echo '${{ needs.implementations.outputs.pairs }}' | jq '.[]' | sort)
for PREFIX in "${LIST[@]}"; do
echo "PREFIX: $PREFIX"
PREFIX=$(echo "$PREFIX" | tr -d '"')
echo "PREFIX: $PREFIX"
CLIENT=$(echo "$PREFIX" | cut -f1 -d " ")
SERVER=$(echo "$PREFIX" | cut -f3 -d " ")
echo "$CLIENT vs. $SERVER"
RUN="results/${PREFIX} results"
echo "$RUN"
{
[ "$CLIENT" == "$LATEST" ] || echo -n "<ins>"
echo -n "$CLIENT"
Expand All @@ -187,7 +182,7 @@ jobs:
[ "$SERVER" == "$LATEST" ] || echo -n "<ins>"
echo -n "$SERVER"
[ "$SERVER" == "$LATEST" ] || echo -n "</ins>"
} >> "pair.md"
} > "pair.md"
if [ ! -e "$RUN/result.json" ]; then
{
echo -n "* "
Expand Down

0 comments on commit 3d7e58b

Please sign in to comment.