Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a CI service for bitbucket.org which allow managing build commands in a VCS file?

Tags:

Since travis-ci.org doesn't support bitbucket.org I need another CI service which supports it and allows managing the build commands in a VCS file (like .travis.yml in travis).

My quite annoying research result so far is:

  • semaphoreci.com: projects which are forks aren't listed even after refreshing the project list
  • app.shippable.com: signing up with both github.com and bitbucket.org doesn't work
  • codeship.com: doesn't support to run commands as ''root'' user((https://codeship.com/documentation/faq/root-level-access/))
  • www.snap-ci.com: no support for bitbucket.org((http://www.slant.co/topics/186/~hosted-continuous-integration-services))

I don't get why people would not want to share the CI service build commands in the VCS - chances of good collaboration without such a feature seems small to me. Even if one adds a script file in the VCS it still needs to be set up in the CI service which appears to be an unnecessary step.

like image 326
Kalle Richter Avatar asked Feb 07 '16 14:02

Kalle Richter


2 Answers

A few months ago Bitbucket launched Pipelines. Quoting from the link:

Continuous delivery is now seamlessly integrated into your Bitbucket Cloud repositories.

You may use it on free plans, but next year they will reduce the build minutes for free plans from 500 minutes to 50 minutes as told in this link.

like image 92
Pep Lainez Avatar answered Oct 05 '22 00:10

Pep Lainez


Also, CircleCI is supporting Bitbucket. It has free plan with 1500 build minutes. It can be triggered by commit or tag in BB. https://circleci.com/

like image 43
Miro A. Avatar answered Oct 05 '22 00:10

Miro A.