Skip to content

Commit 4940c51

Browse files
committed
Ensure ASV config uses absolute path
1 parent 6a98aa0 commit 4940c51

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/benchmark.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,6 @@ jobs:
5555
export OMP_NUM_THREADS=1
5656
- name: Run benchmarks
5757
run: |
58-
asv machine --yes --config benchmarks/asv.conf.json
59-
asv run --config benchmarks/asv.conf.json --show-stderr
58+
CONFIG_FILE="$(pwd)/benchmarks/asv.conf.json"
59+
asv machine --yes --config "$CONFIG_FILE"
60+
asv run --config "$CONFIG_FILE" --show-stderr

0 commit comments

Comments
 (0)