Skip to content

Commit

Permalink
Update benchmark.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
seabbs authored Jun 21, 2024
1 parent 6d02b23 commit 07ea3c8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/benchmark.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,13 @@ jobs:
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/cache@v1
- name: Install dependencies
run: julia --project=benchmark -e 'using Pkg; Pkg.instantiate()'
run: |
julia --project=benchmark -e 'using Pkg;
Pkg.remove("EpiAware");
Pkg.remove("EpiAwarePipeline");
Pkg.develop("./EpiAware");
Pkg.develop("./pipeline");
Pkg.instantiate()'
- name: Run benchmarks
run: julia --project=benchmark -e 'using BenchmarkCI; BenchmarkCI.judge(; baseline = "origin/main")'
- name: Post results
Expand Down

0 comments on commit 07ea3c8

Please sign in to comment.