Skip to content

Commit 137344c

Browse files
committed
Integrate building into workflow
1 parent 3c6bb52 commit 137344c

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.github/workflows/bencher.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v4
1313
- uses: bencherdev/bencher@main
14+
- name: Build release binary
15+
run: cargo build --release
1416
- name: Add fgfa to PATH
1517
run: echo "$PWD/target/release" >> $GITHUB_PATH
1618
- name: Fetch test data

bench/filesize_benchmark_web.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
import gzip
88
import shutil
99

10-
subprocess.run(["cargo", "build", "--release"], check = True)
11-
1210
with open("bench/graphs.toml", "rb") as f:
1311
toml_graphs = tomllib.load(f)
1412

bench/latency_benchmark_web.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
import gzip
99
import shutil
1010

11-
subprocess.run(["cargo", "build", "--release"], check = True)
12-
1311
with open("bench/graphs.toml", "rb") as f:
1412
toml_graphs = tomllib.load(f)
1513

0 commit comments

Comments
 (0)