Use dedicated branch for benchmark results #22
Workflow file for this run
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: Performance Regression Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
permissions: | |
contents: write | |
deployments: write | |
jobs: | |
benchmark: | |
name: Run julia benchmark example | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- '1.10' | |
os: | |
- ubuntu-latest | |
arch: | |
- x64 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- uses: actions/cache@v4 | |
env: | |
cache-name: cache-artifacts | |
with: | |
path: ~/.julia/artifacts | |
key: runner.os−test−env.cache−name−{{ hashFiles('**/Project.toml') }} | |
restore-keys: | | |
runner.os−test− | |
${{ env.cache-name }}- | |
${{ runner.os }}-test- | |
${{ runner.os }}- | |
- name: Run benchmark | |
run: | | |
julia --project=GalerkinToolkitExamples -e ' | |
using Pkg | |
Pkg.develop(path=".") | |
include("GalerkinToolkitExamples/benchmarks/run_benchmarks.jl")' | |
- name: Store benchmark result | |
uses: benchmark-action/github-action-benchmark@v1 | |
with: | |
name: Julia benchmark result | |
tool: 'julia' | |
output-file-path: output.json | |
gh-pages-branch: benchmarks | |
benchmark-data-dir-path: bench | |
# Use personal access token instead of GITHUB_TOKEN due to https://github.community/t/github-action-not-triggering-gh-pages-upon-push/16096 | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
auto-push: true | |
# Show alert with commit comment on detecting possible performance regression | |
alert-threshold: '200%' | |
comment-on-alert: true | |
fail-on-alert: true | |
copybenchmarks: | |
name: Copy benchmark results to gh-pages | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Copy benchmark results to docs | |
run: | | |
git fetch origin benchmarks | |
git checkout gh-pages | |
git status | |
git branch | |
git checkout benchmarks -- bench | |
git status | |
ls bench | |
cat bench/*.js |