Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to limit ammount of concurrent builds in Travis-CI

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?

like image 933
Sergey Korotkov Avatar asked Aug 12 '13 19:08

Sergey Korotkov


People also ask

How many people use Travis CI?

Travis CI is a software-testing solution used by over 900,000 open source projects and 600,000 users.

How do you speed up Travis CI?

To speed up a test suite, you can break it up into several parts using Travis CI's build matrix feature. Say you want to split up your unit tests and your integration tests into two different build jobs. They'll run in parallel and fully utilize the available build capacity for your account.


1 Answers

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

like image 153
David Riccitelli Avatar answered Nov 11 '22 05:11

David Riccitelli