jgm / skylighting

A Haskell syntax highlighting library with tokenizers derived from KDE syntax highlighting descriptions
194 stars 62 forks source link

Stop terminating long builds on TravisCI #17

Closed KyleOndy closed 7 years ago

KyleOndy commented 7 years ago

By default travis will terminate a build after 10 minutes with no build output. Travis provides a utilty, travis_wait, to help with this issue. However there is a know issue that this utility will strip quotes from the command being run.

By running this utility on a sleep command and running in the background, the build will complete as normal and not be terminated.

jgm commented 7 years ago

Great, thank you.