Add Benchmarking CI #16
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: Benchmarks | ||
permissions: | ||
contents: write # contents permission to update benchmark contents in gh-pages branch | ||
statuses: read | ||
deployments: write # deployments permission to deploy GitHub pages website | ||
pull-requests: write | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- "src/**/*" | ||
- "ext/**/*" | ||
- "perf/**/*" | ||
- ".buildkite/**/*" | ||
- "Project.toml" | ||
- ".github/workflows/Benchmark.yml" | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "src/**/*" | ||
- "ext/**/*" | ||
- "benchmarks/**/*" | ||
- ".buildkite/**/*" | ||
- "Project.toml" | ||
- ".github/workflows/Benchmark.yml" | ||
jobs: | ||
benchmark: | ||
if: | | ||
Check failure on line 32 in .github/workflows/Benchmark.yml GitHub Actions / BenchmarksInvalid workflow file
|
||
${{ contains(github.event.head_commit.message, '[only benchmarks]') || | ||
!contains(github.event.head_commit.message, '[only') && | ||
!contains(github.event.head_commit.message, '[skip benchmarks]') && | ||
!build.pull_request.draft }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Download Buildkite Artifacts | ||
id: download | ||
uses: EnricoMi/download-buildkite-artifact-action@v1 | ||
with: | ||
buildkite_token: ${{ secrets.BUILDKITE_TOKEN }} | ||
ignore_build_states: blocked,canceled,skipped,not_run,failed | ||
ignore_job_states: timed_out,failed | ||
output_path: artifacts | ||
- name: Locate Benchmarks Artifact | ||
id: locate | ||
if: ${{ steps.download.outputs.download-state == 'success' }} | ||
run: echo "path=$(find artifacts -type f -name benchmarkresults.json 2>/dev/null)" >> $GITHUB_OUTPUT | ||
- name: Upload Benchmark Results | ||
if: ${{ steps.locate.outputs.path != '' }} | ||
uses: benchmark-action/github-action-benchmark@v1 | ||
with: | ||
name: Metal Benchmarks | ||
tool: "julia" | ||
output-file-path: ${{ steps.locate.outputs.path }} | ||
benchmark-data-dir-path: "" | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
comment-always: true | ||
summary-always: true | ||
alert-threshold: "150%" | ||
fail-on-alert: false | ||
auto-push: ${{ github.event_name != 'pull_request' }} |