Skip to content

Commit

Permalink
do not download all artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
ProjectsByJackHe committed Feb 14, 2024
1 parent 1c4c7e1 commit 083a19a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/quic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,9 @@ jobs:
with:
repository: microsoft/netperf
ref: sqlite
- uses: actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe # Specify no 'name' to download all uploaded artifacts
- uses: actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe
with:
pattern: test-results-*
- run: ls
- run: python sql.py
- name: Git commit # TODO: Squash history for this branch to keep size small
Expand All @@ -255,7 +257,9 @@ jobs:
repository: microsoft/netperf
ref: deploy
- run: 'rm -rf *.json'
- uses: actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe # Specify no 'name' to download all uploaded artifacts. TODO: Refactor this "download-all" models to instead filter for specific artifacts slices.
- uses: actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe
with:
pattern: "json-test-results-*"
- run: python generate_historical_data.py
- name: Git commit
run: 'git config user.name "QUIC Dev[bot]" && git config user.email "[email protected]" && git pull && git add *.json && git commit -m "Update intermediary dashboard files" && git push'

0 comments on commit 083a19a

Please sign in to comment.