Initiated locally with:
gh workflow run build-and-run.yml
I suspect this is because github runs containers (not bare-metal). We could turn of parallelism in github actions (there's only 2 cores anyway), or revert to Threading, or set number of tasks = 1.
Other fixes include (but need to be tested).
multiprocessing.set_start_method("spawn")
Initiated locally with:
I suspect this is because github runs containers (not bare-metal). We could turn of parallelism in github actions (there's only 2 cores anyway), or revert to Threading, or set number of tasks = 1.
Other fixes include (but need to be tested).