8

We use Travis-Ci with OpenSauce to test our web application. OpenSauce has a limit for concurrent running of tests - 2 tests. Travis-CI by default can run much more build/tests in parallel. As the result of different limits our builds fail randomly.

So, is it possible to set limit for amount of parallel running builds on Travis-CI side?

Sergey Korotkov
  • 311
  • 2
  • 7
  • To me it looks like Sauce is putting jobs into queue, so it will just take longer to test (though I really did not investigate more deeply). – Michal Čihař Sep 09 '13 at 11:23

2 Answers2

5

On the Travis CI project on GitHub there's an issue open about limiting the concurrent builds per project: https://github.com/travis-ci/travis-ci/issues/1366

David Riccitelli
  • 7,491
  • 5
  • 42
  • 56
0

The number of concurrent jobs for a repository can be easily restricted by Travis-CI user interface in repository settings field Limit concurrent jobs.

Limiting Concurrent Jobs

hynekcer
  • 14,942
  • 6
  • 61
  • 99