ci: introduce benchmarks for CI #6
Workflow file for this run
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: '[rs] Benchmarks' | |
| on: | |
| pull_request: | |
| # types: [labeled] | |
| # paths: | |
| # - 'rs/**' | |
| # - 'Cargo.lock' | |
| # - 'Cargo.toml' | |
| push: | |
| branches: [master] | |
| paths: | |
| - 'rs/**' | |
| - 'Cargo.lock' | |
| - 'Cargo.toml' | |
| env: | |
| CARGO_TERM_COLOR: always | |
| RUST_BACKTRACE: 1 | |
| jobs: | |
| benchmark: | |
| # if: contains(github.event.label.name, 'run-benchmarks') | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| issues: write | |
| steps: | |
| # Checkout the current branch (PR branch) | |
| - name: Checkout PR branch | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: Test Comment | |
| # if: github.event_name == 'pull_request' | |
| uses: actions/github-script@v6 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| script: | | |
| await github.rest.issues.createComment({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| issue_number: context.issue.number, | |
| body: 'Test comment from GitHub Actions' | |
| }); | |
| # - name: Setup Rust | |
| # uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| # with: | |
| # toolchain-file: rust-toolchain.toml | |
| # cache: false | |
| # # Run benchmarks on PR branch | |
| # - name: Run Benchmarks | |
| # run: | | |
| # make bench | |
| # # Checkout master branch to get baseline JSON | |
| # - name: Checkout master branch | |
| # uses: actions/checkout@v4 | |
| # with: | |
| # ref: master | |
| # path: master-branch | |
| # # Copy baseline JSON from master | |
| # - name: Copy Baseline JSON | |
| # run: | | |
| # cp master-branch/benchmarks/bench_data.json baseline.json | |
| # # Update the bench files formats | |
| # - name: Convert PR Bench Data | |
| # run: | | |
| # cargo run --bin convert-bench-data --manifest-path=benchmarks/Cargo.toml -- benchmarks/bench_data.json bench_data_pr_converted.json | |
| # - name: Convert Baseline Bench Data | |
| # run: | | |
| # cargo run --bin convert-bench-data --manifest-path=benchmarks/Cargo.toml -- baseline.json bench_data_baseline_converted.json | |
| # # Compare benchmarks using github-action-benchmark | |
| # - name: Compare Benchmarks | |
| # uses: benchmark-action/github-action-benchmark@v1 | |
| # with: | |
| # tool: 'customSmallerIsBetter' | |
| # # Path to the benchmark JSON from the PR branch | |
| # benchmark-data-dir-path: . | |
| # # Name of the benchmark JSON file | |
| # output-file-path: bench_data_pr_converted.json | |
| # # Path to the baseline JSON (from master) | |
| # external-data-json-path: bench_data_baseline_converted.json | |
| # # Comment on PR with results | |
| # comment-always: true | |
| # summary-always: true | |
| # github-token: ${{ secrets.GITHUB_TOKEN }} |