Needs advice
on
JenkinsJenkinsTravis CITravis CI
and
CircleCICircleCI

From a StackShare Community member: "Currently we use Travis CI and have optimized it as much as we can so our builds are fairly quick. Our boss is all about redundancy so we are looking for another solution to fall back on in case Travis goes down and/or jacks prices way up (they were recently acquired). Could someone recommend which CI we should go with and if they have time, an explanation of how they're different?"

READ LESS
3 upvotes·466.9K views
Replies (6)
CTO at Cloudonix LTD.·
Recommends
on
GitLab CI

You are probably looking at another hosted solution: Jenkins is a good tool but it way too work intensive to be used as just a backup solution.

I have good experience with Circle-CI, Codeship, Drone.io and Travis (as well as problematic experiences with all of them), but my go-to tool is Gitlab CI: simple, powerful and if you have problems with their limitations or pricing, you can always install runners somewhere and use Gitlab just for scheduling and management. Even if you don't host your git repository at Gitlab, you can have Gitlab pull changes automatically from wherever you repo lives.

READ MORE
2 upvotes·463.6K views
Senior Developer at Elegant Themes·

We use CircleCI because of the better value it provides in its plans. I'm sure we could have used Travis just as easily but we found CircleCI's pricing to be more reasonable. In the two years since we signed up, the service has improved. CircleCI is always innovating and iterating on their platform. We have been very satisfied.

READ MORE
13 upvotes·1 comment·544.1K views
Vlad Khazin
Vlad Khazin
·
April 19th 2019 at 10:07PM

I prefer CircleCI over Jenkins for the following reasons:

1. each repo has an isolated build container - no web of dependencies to manage

2. no ocean of plugins to configure - all what you need is the yaml file and, maybe, in a custom build image

3. decentralized execution of builds - no master/agents complexity

·
Reply
View all (6)
Avatar of Oded Arbel

Oded Arbel

CTO at Cloudonix LTD.