Travis-CI - How is time limit counted for builds? (Sum of all jobs or time of longest one)?

后端 未结 1 1666
轻奢々
轻奢々 2021-02-05 18:12

Let\'s say i have repo which for each push (build) starts 4 jobs (diffrent environment/compilers etc.).

There is time limit for builds - 50min. Is it counted as sum of t

相关标签:
1条回答
  • 2021-02-05 19:01

    The Travis CI documentation is pretty clear about this. A build consists of one or many jobs. The limit is enforced for each job:

    There is no timeout for a build; a build will run as long as all the jobs do as long as each job does not timeout.

    For example, the current timeout for a job on travis-ci.org is 50 minutes (and at least one line printed to stdout/stderr per 10 minutes).

    0 讨论(0)
提交回复
热议问题