test with Enzyme
#365
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 | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
jobs: | |
benchmark: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: '1' | |
arch: x64 | |
show-versioninfo: true | |
- uses: julia-actions/cache@v2 | |
- uses: julia-actions/julia-buildpkg@v1 | |
- name: Install dependencies | |
shell: julia --color=yes {0} | |
run: | | |
import Pkg | |
Pkg.add(["PkgBenchmark", "BenchmarkCI"]) | |
- name: Run benchmarks | |
shell: julia --color=yes {0} | |
run: | | |
import BenchmarkCI | |
BenchmarkCI.judge(; baseline="origin/main", retune=true, verbose=true) | |
- name: Print judgement | |
shell: julia --color=yes {0} | |
run: | | |
import BenchmarkCI | |
BenchmarkCI.displayjudgement() | |
- name: Post results | |
shell: julia --color=yes {0} | |
run: | | |
import BenchmarkCI | |
BenchmarkCI.postjudge() | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |