Try to fix the build process of documentation page #548
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: Benchmark Tracking | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| paths: | |
| - '.github/workflows/Benchmarks.yml' | |
| - 'src/**' | |
| - 'ext/**' | |
| - 'benchmarks/**' | |
| - 'Project.toml' | |
| pull_request: | |
| branches: | |
| - 'main' | |
| paths: | |
| - '.github/workflows/Benchmarks.yml' | |
| - 'src/**' | |
| - 'ext/**' | |
| - 'benchmarks/**' | |
| - 'Project.toml' | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| permissions: | |
| actions: write | |
| contents: write | |
| deployments: write | |
| # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | |
| # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | |
| concurrency: | |
| group: pages | |
| cancel-in-progress: false | |
| jobs: | |
| benchmark: | |
| runs-on: ubuntu-latest | |
| if: ${{ !github.event.pull_request.draft }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: '1' | |
| arch: x64 | |
| - uses: julia-actions/cache@v2 | |
| - name: Run benchmark | |
| run: | | |
| cd benchmarks | |
| julia --project --threads=2 --color=yes -e ' | |
| using Pkg; | |
| Pkg.develop(PackageSpec(path=joinpath(pwd(), ".."))); | |
| Pkg.instantiate(); | |
| include("runbenchmarks.jl")' | |
| - name: Parse & Upload Benchmark Results | |
| uses: benchmark-action/github-action-benchmark@v1 | |
| with: | |
| name: Benchmark Results | |
| tool: "julia" | |
| output-file-path: benchmarks/benchmarks_output.json | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| alert-threshold: "130%" | |
| fail-threshold: "170%" | |
| comment-on-alert: true | |
| fail-on-alert: true | |
| benchmark-data-dir-path: benchmarks | |
| max-items-in-chart: 100 | |
| auto-push: ${{ github.event_name != 'pull_request' }} |