Skip to content

Commit

Permalink
fixup! RISC-V: combine nightly builds into single job
Browse files Browse the repository at this point in the history
  • Loading branch information
mshabunin committed Feb 17, 2025
1 parent 12ce326 commit 24121a1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,10 @@ async def run_one(name, cmd, logname, env, args):
if filter:
extra_args.append("--gtest_filter=*:-{}".format(":".join(filter)))

print(f"{args.workdir} / {args.bindir} / {actual_exe}")
actual_exe = args.workdir / args.bindir / Path(actual_exe)
if not actual_exe.exists() or not actual_exe.is_file():
print(f"{actual_exe}")
if len(wrap) == 0 and (not actual_exe.exists() or not actual_exe.is_file()):
print("Executable not found: {}".format(actual_exe))
res = -3
else:
Expand Down

0 comments on commit 24121a1

Please sign in to comment.