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·472.8K views
Replies (6)

I use Google Cloud Build because it's my first foray into the CICD world(loving it so far), and I wanted to work with something GCP native to avoid giving permissions to other SaaS tools like CircleCI and Travis CI.

I really like it because it's free for the first 120 minutes, and it's one of the few CICD tools that enterprises are open to using since it's contained within GCP.

One of the unique things is that it has the Kaniko cache, which speeds up builds by creating intermediate layers within the docker image vs. pushing the full thing from the start. Helpful when you're installing just a few additional dependencies.

Feel free to checkout an example: Cloudbuild Example

READ MORE
4 upvotes·506.9K 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·550.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 Sung Won Chung