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