Skip to content

Commit

Permalink
CI: echo scheduled commands
Browse files Browse the repository at this point in the history
  • Loading branch information
mratsim committed Oct 6, 2024
1 parent 4a2dd28 commit e3df508
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion helpers/pararun.nim
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@ proc enqueuePendingCommands(wq: WorkQueue) {.async.} =

await wq.sem.acquire()
let cmd = wq.cmdQueue.popFirst()
echo '\n', '-'.repeat(80)
echo "|\n| Scheduling #", id, "/", total, ": ", cmd ,"\n|"
echo '-'.repeat(80)
let p = cmd.startProcess(options = {poStdErrToStdOut, poUsePath, poEvalCommand})

let bufOut = newAsyncQueue[string]()
Expand Down Expand Up @@ -191,4 +194,4 @@ proc main() =
runCommands(commandFile, numWorkers)

when isMainModule:
main()
main()

0 comments on commit e3df508

Please sign in to comment.