This introduces a minimum threshold for writing the progress updates like:
Scanning for nodes in ways
Block M/N
Writing tile M of N
The threshold only applies when run non-interactively, for example, when in a GitHub action. It shoots for one line of output for every 1% of progress. I was motivated to do this because processing North America in an action generated > 500 MB of logs and seemed to cause GitHub to kill the action.
Interactive use should be unaffected. Windows is always treated as interactive, as I'm not sure how to test for that.
This introduces a minimum threshold for writing the progress updates like:
The threshold only applies when run non-interactively, for example, when in a GitHub action. It shoots for one line of output for every 1% of progress. I was motivated to do this because processing North America in an action generated > 500 MB of logs and seemed to cause GitHub to kill the action.
Interactive use should be unaffected. Windows is always treated as interactive, as I'm not sure how to test for that.