CI recommendations?

44 views
Skip to first unread message

Nathan Youngman

unread,
Jan 15, 2014, 12:53:49 PM1/15/14
to ye...@googlegroups.com

Hi,

What do people use/suggest for Ruby on Rails and JavaScript (Jasmine) CI services? 

I've been using Travis CI on open source gems, which has worked quite well there. It integrates with pull requests and I have it testing the full matrix of Ruby 1.9 through 2.1 and JRuby, along with Rails 3 through 4.1 beta.

Nathan.


Ryan Jones

unread,
Jan 15, 2014, 2:53:58 PM1/15/14
to ye...@googlegroups.com
We've been using Travis CI (private) @ AMA for maybe a year or so now and have had a ton of success with it. We do tons of RSpec and have moved into using Teaspoon/Jasmine. It's covered all of our needs: http://about.travis-ci.org/docs/user/languages/ruby/

We had to bump up our workers from 2 -> 5 because we were experiencing slowdowns when we were really busy. Each push triggers a build, a PR triggers a build (so you can lock up those 2 workers pretty quickly).

Overall we've had 3 issues with them. 

- The first was when we bumped up to 5 workers we somehow got moved down to 2 workers for a few days. They quickly fixed it once I contacted them and then they gave us a good chunk of free time for the inconvenience.

- The second was that they pulled a patch level of ruby without any notifications (that we saw at least). We ended up doing the below to fix it. This just grabs the most recent patch level. Pretty minor.

rvm:
  - "2.0.0"
- The third was that our build randomly kept running out of memory. This one was tough to track down since the build would just randomly fail. We ended up fixing it with this:

before_install:
  - sudo sysctl -w kernel.shmmax=268435456
  - sudo sysctl -w kernel.shmall=268435456
I can honestly say, you get what you pay for with Travis CI. The Travis team has worked through all of issues from the beginning to end. Most of the time I can just jump into their campfire and hammer the issue out. Their support is amazing. 

We used to use Jenkins in house, but the amount of maintenance that went into it was huge. The only thing we miss from Jenkins was the ability to auto-deploy master easily to our internal servers.

Ryan




--
You received this message because you are subscribed to the Google Groups "YEGRB" group.
To unsubscribe from this group and stop receiving emails from it, send an email to yegrb+un...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Ben Zittlau

unread,
Jan 15, 2014, 4:14:54 PM1/15/14
to ye...@googlegroups.com
We've been using CircleCI to run phpunit tests against our main code base, and casper.js integration tests against our front-end app.  I've been really happy with the service, and they are incredibly responsive and helpful on support.  They do similar github integrations for PR's as Travis, and iirc we went with them because their price curve is a bit easier to get started on than Travis (and I think the guys next door at Mitre had had good experiences with them.)

I'd love to demo it next week, but I've got a conflict so won't be able to make it out to the meetup :(

Ben

Douglas Stewart

unread,
Jan 15, 2014, 4:18:34 PM1/15/14
to ye...@googlegroups.com
Granify is also on CircleCI, largely for the reasons Ben mentioned. Nothing that stands out as love-worthy but also no negative experiences to date.

Doug
> > > To unsubscribe from this group and stop receiving emails from it, send an email to yegrb+un...@googlegroups.com (mailto:yegrb%2Bunsu...@googlegroups.com).
> > > For more options, visit https://groups.google.com/groups/opt_out.
> >
> >
> > --
> > You received this message because you are subscribed to the Google Groups "YEGRB" group.
> > To unsubscribe from this group and stop receiving emails from it, send an email to yegrb+un...@googlegroups.com (mailto:yegrb%2Bunsu...@googlegroups.com).
> > For more options, visit https://groups.google.com/groups/opt_out.
>
>
>
>
> --
> benzittlau.com (http://benzittlau.com)
> --
> You received this message because you are subscribed to the Google Groups "YEGRB" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to yegrb+un...@googlegroups.com (mailto:yegrb+un...@googlegroups.com).
Reply all
Reply to author
Forward
0 new messages