Skip to content

Commit d8f92a8

Browse files
committed
Clean up benchmark workflow and update output path
1 parent 78f5db6 commit d8f92a8

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

.github/workflows/benchmark.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Run JMH Benchmarks
1+
name: Run Benchmarks
22

33
on:
44
workflow_dispatch:
@@ -10,16 +10,22 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v4
1212

13-
- uses: actions/setup-java@v4
13+
- name: Set up Java
14+
uses: actions/setup-java@v4
1415
with:
15-
distribution: "temurin"
16-
java-version: "21"
16+
distribution: temurin
17+
java-version: 21
1718

18-
- name: Run JMH Benchmarks
19+
- name: Set up SBT
20+
uses: coursier/setup-action@v1
21+
with:
22+
apps: sbt
23+
24+
- name: Run benchmarks via Makefile
1925
run: make bench_map_1
2026

21-
- name: Upload Results
27+
- name: Upload benchmark results
2228
uses: actions/upload-artifact@v4
2329
with:
2430
name: benchmark-results
25-
path: target/benchmark.csv
31+
path: analysis/bench_map_1.csv

0 commit comments

Comments
 (0)