File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -365,22 +365,22 @@ jobs:
365
365
run : |
366
366
cd console
367
367
if [ "$RUNNER_OS" == "Windows" ]; then
368
- python ./bench_runner.py --frontend_cpu --executable=". /Scripts/swiftnav-console.exe"
368
+ python ./bench_runner.py --frontend_cpu --executable="${GITHUB_WORKSPACE}/console /Scripts/swiftnav-console.exe"
369
369
elif [ "$RUNNER_OS" == "macOS" ]; then
370
- python ./bench_runner.py --frontend_cpu --executable=". /bin/swiftnav-console"
370
+ python ./bench_runner.py --frontend_cpu --executable="${GITHUB_WORKSPACE}/console /bin/swiftnav-console"
371
371
elif [ "$RUNNER_OS" == "Linux" ]; then
372
- python ./bench_runner.py --frontend_cpu --executable=". /bin/swiftnav-console"
372
+ python ./bench_runner.py --frontend_cpu --executable="${GITHUB_WORKSPACE}/console /bin/swiftnav-console"
373
373
fi
374
374
- name : Run MEM Frontend Benchmark.
375
375
shell : bash
376
376
run : |
377
377
cd console
378
378
if [ "$RUNNER_OS" == "Windows" ]; then
379
- python ./bench_runner.py --frontend_mem --executable=". /Scripts/swiftnav-console.exe"
379
+ python ./bench_runner.py --frontend_mem --executable="${GITHUB_WORKSPACE}/console /Scripts/swiftnav-console.exe"
380
380
elif [ "$RUNNER_OS" == "macOS" ]; then
381
- python ./bench_runner.py --frontend_mem --executable=". /bin/swiftnav-console"
381
+ python ./bench_runner.py --frontend_mem --executable="${GITHUB_WORKSPACE}/console /bin/swiftnav-console"
382
382
elif [ "$RUNNER_OS" == "Linux" ]; then
383
- python ./bench_runner.py --frontend_mem --executable=". /bin/swiftnav-console"
383
+ python ./bench_runner.py --frontend_mem --executable="${GITHUB_WORKSPACE}/console /bin/swiftnav-console"
384
384
fi
385
385
386
386
You can’t perform that action at this time.
0 commit comments