Fix deprecation path for controller refactor (PR #2899) #848
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 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 |