Scheduled Bench #94
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
name: Scheduled Bench | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
jobs: | |
bench: | |
runs-on: [self-hosted, rspack-bench] | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Init env | |
uses: ./.github/actions/env | |
- name: Build rspack | |
run: node bin/build-rspack.js | |
- name: Run benchmark | |
run: node bin/bench.js | |
- id: print-compare-results | |
name: Print compare results | |
run: | | |
result=$(node bin/compare-bench.js latest current) | |
echo "$result" | |
echo "diff-result=${result//$'\n'/'@@'}" >> $GITHUB_OUTPUT | |
- name: Setup git user | |
run: | | |
git config --global user.name "github-actions[bot]" | |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
- name: Upload result | |
run: node bin/upload.js ${{ secrets.GITHUB_TOKEN }} | |
- name: Check Threshold | |
run: | | |
result="${{ steps.print-compare-results.outputs.diff-result }}"; | |
if [[ $result =~ "Threshold exceeded" ]]; then | |
echo "Some benchmark cases exceed the threshold, please visit the previous step for more information" | |
exit 1 | |
fi |