Skip to content

Commit adc2aa0

Browse files
committed
chmod
1 parent 30f6244 commit adc2aa0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,8 +367,10 @@ jobs:
367367
if [ "$RUNNER_OS" == "Windows" ]; then
368368
python ./bench_runner.py --frontend_cpu --executable="${GITHUB_WORKSPACE}/console/Scripts/swiftnav-console.exe"
369369
elif [ "$RUNNER_OS" == "macOS" ]; then
370+
chmod +x "${GITHUB_WORKSPACE}/console/bin/swiftnav-console"
370371
python ./bench_runner.py --frontend_cpu --executable="${GITHUB_WORKSPACE}/console/bin/swiftnav-console"
371372
elif [ "$RUNNER_OS" == "Linux" ]; then
373+
chmod +x "${GITHUB_WORKSPACE}/console/bin/swiftnav-console"
372374
python ./bench_runner.py --frontend_cpu --executable="${GITHUB_WORKSPACE}/console/bin/swiftnav-console"
373375
fi
374376
- name: Run MEM Frontend Benchmark.
@@ -378,8 +380,10 @@ jobs:
378380
if [ "$RUNNER_OS" == "Windows" ]; then
379381
python ./bench_runner.py --frontend_mem --executable="${GITHUB_WORKSPACE}/console/Scripts/swiftnav-console.exe"
380382
elif [ "$RUNNER_OS" == "macOS" ]; then
383+
chmod +x "${GITHUB_WORKSPACE}/console/bin/swiftnav-console"
381384
python ./bench_runner.py --frontend_mem --executable="${GITHUB_WORKSPACE}/console/bin/swiftnav-console"
382385
elif [ "$RUNNER_OS" == "Linux" ]; then
386+
chmod +x "${GITHUB_WORKSPACE}/console/bin/swiftnav-console"
383387
python ./bench_runner.py --frontend_mem --executable="${GITHUB_WORKSPACE}/console/bin/swiftnav-console"
384388
fi
385389

0 commit comments

Comments
 (0)