Skip to content

Fix deprecation path for controller refactor (PR #2899) #848

Fix deprecation path for controller refactor (PR #2899)

Fix deprecation path for controller refactor (PR #2899) #848

Workflow file for this run

name: Benchmark this PR
on:
pull_request:
branches: [master]
paths-ignore: ['docs/**']
permissions:
pull-requests: write
contents: read
jobs:
benchmark:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
version: ["1", "lts"]
env:
# Force consistent Julia depot path for self-hosted runners
JULIA_DEPOT_PATH: ~/.julia
steps:
# Clean stale AirspeedVelocity installation to avoid path issues
- name: Clean AirspeedVelocity cache
run: |
rm -rf ~/.julia/bin/benchpkg* ~/.julia/bin/asvjl* || true
rm -rf ~/.julia/packages/AirspeedVelocity || true
rm -rf ~/.julia/compiled/*/AirspeedVelocity || true
- uses: MilesCranmer/AirspeedVelocity.jl@action-v1
with:
julia-version: ${{ matrix.version }}
script: "benchmark/benchmarks.jl"
extra-pkgs: "StableRNGs,StaticArrays"
job-summary: true