Publish benchmark results #2203
This file contains hidden or 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
| name: Publish benchmark results | |
| on: | |
| workflow_run: | |
| workflows: [ 'Benchmark' ] | |
| types: [ completed ] | |
| jobs: | |
| push-to-data-repo: | |
| name: Push benchmark results to data repository | |
| runs-on: ubuntu-latest | |
| if: github.event.workflow_run.conclusion == 'success' | |
| steps: | |
| - name: Download benchmark results from workflow artifacts | |
| uses: actions/github-script@v9.0.0 | |
| id: download-results | |
| with: | |
| result-encoding: string | |
| script: | | |
| var artifacts = await github.rest.actions.listWorkflowRunArtifacts({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| run_id: ${{github.event.workflow_run.id }}, | |
| }); | |
| if (artifacts.data.artifacts.length === 0) { | |
| return 'stop'; | |
| } | |
| var matchArtifact = artifacts.data.artifacts.filter((artifact) => { | |
| return artifact.name == "benchmark-results" | |
| })[0]; | |
| var download = await github.rest.actions.downloadArtifact({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| artifact_id: matchArtifact.id, | |
| archive_format: 'zip', | |
| }); | |
| var fs = require('fs'); | |
| fs.writeFileSync('${{github.workspace}}/benchmark-results.zip', Buffer.from(download.data)); | |
| return 'continue'; | |
| - run: unzip benchmark-results.zip | |
| if: ${{ steps.download-results.outputs.result == 'continue' }} | |
| - name: Set VERSION/B_SHA/B_EVENT env variable | |
| run: | | |
| VERSION=$(cat version) | |
| echo "VERSION=$VERSION" >> $GITHUB_ENV | |
| B_SHA=$(cat sha) | |
| echo "B_SHA=$B_SHA" >> $GITHUB_ENV | |
| B_EVENT=$(cat event) | |
| echo "B_EVENT=$B_EVENT" >> $GITHUB_ENV | |
| if: ${{ steps.download-results.outputs.result == 'continue' }} | |
| - name: Push benchmark file | |
| uses: dmnemec/copy_file_to_another_repo_action@main | |
| env: | |
| API_TOKEN_GITHUB: ${{ secrets.RESULTS_REPO_RW_TOKEN }} | |
| with: | |
| source_file: '${{ env.B_EVENT }}/${{ env.B_SHA }}/${{ env.VERSION }}.json' | |
| destination_folder: '${{ env.B_EVENT }}/${{ env.B_SHA }}' | |
| destination_repo: 'scalalandio/chimney-benchmark-results' | |
| user_email: 'mateusz.kubuszok@gmail.com' | |
| user_name: 'Mateusz Kubuszok' | |
| commit_message: 'Benchmarks for ${{ env.VERSION }} added.' | |
| if: ${{ steps.download-results.outputs.result == 'continue' }} | |
| - name: Push meta file | |
| uses: dmnemec/copy_file_to_another_repo_action@main | |
| env: | |
| API_TOKEN_GITHUB: ${{ secrets.RESULTS_REPO_RW_TOKEN }} | |
| with: | |
| source_file: 'meta.json' | |
| destination_repo: 'scalalandio/chimney-benchmark-results' | |
| user_email: 'mateusz.kubuszok@gmail.com' | |
| user_name: 'Mateusz Kubuszok' | |
| commit_message: 'Meta update for ${{ env.VERSION }}' | |
| if: ${{ steps.download-results.outputs.result == 'continue' }} |