-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1c4c7e1
commit 083a19a
Showing
1 changed file
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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' |