Skip to content

Commit

Permalink
Update workflows (#165)
Browse files Browse the repository at this point in the history
- Use upload-artifact@v4 and download-artifact@v4
- Support manually running the tquic-interop workflow
  • Loading branch information
iyangsj authored Feb 1, 2024
1 parent 04d64f2 commit db04307
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tquic-goodput.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
python3 run.py -r $QUIC_IMAGES -s ${{ matrix.impl }} -c ${{ matrix.impl }} -t ${{ matrix.case }} -a ${{ matrix.cc }} -d -n "drop-rate --delay=15ms --bandwidth=10Mbps --queue=25 --rate_to_server=5 --rate_to_client=5" -j ${{ matrix.case }}-5-${{ matrix.cc }}-${{ matrix.impl }}.json
- name: Store measurement results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.case }}-${{ matrix.impl }}
path: quic-interop-runner/goodput*.json
Expand All @@ -51,11 +51,11 @@ jobs:
needs: measure
steps:
- name: Download all workflow run artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
- name: Display structure of downloaded files
run: ls -R
- name: Store all measurement results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: goodput-all-result
path: goodput*
1 change: 1 addition & 0 deletions .github/workflows/tquic-interop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
workflow_dispatch:

env:
CARGO_TERM_COLOR: always
Expand Down

0 comments on commit db04307

Please sign in to comment.