-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upload test sketches report workflow artifact
This sketches report artifact is used to get test size deltas reports.
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Upload test sketches report artifact | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
# The "labeled" event can be used to easily retrigger the workflow to restore the workflow artifact after it | ||
# expires every 90 days. | ||
- labeled | ||
|
||
jobs: | ||
upload: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
# The action only does a deltas report when the sketches report's `commit_hash` value matches the PR head SHA | ||
- name: Update commit hash in reports | ||
run: | | ||
# Set up dedicated folder for the updated sketches reports (it's not possible to modify them in place) | ||
SKETCHES_REPORTS_PATH="${{ runner.temp }}/sketches-reports" | ||
# See: https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-an-environment-variable | ||
echo "SKETCHES_REPORTS_PATH=$SKETCHES_REPORTS_PATH" >> "$GITHUB_ENV" | ||
mkdir --parents "$SKETCHES_REPORTS_PATH" | ||
cd "${{ github.workspace }}/.github/workflows/testdata/sketches-reports/" | ||
for reportFile in *.json; do | ||
jq '.commit_hash = "${{ github.event.pull_request.head.sha }}"' "$reportFile" > "${SKETCHES_REPORTS_PATH}/$reportFile" | ||
done | ||
- name: Save sketches report as workflow artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
if-no-files-found: error | ||
path: ${{ env.SKETCHES_REPORTS_PATH }} | ||
name: sketches-reports |