This initially came off as a new way to more efficiently manage project development and builds, but now it seems like it's just another CI platform. Or am I missing something?
Hi Chris, Why do you think it's just another CI platform now? :)
Pipelines: Your Doorway to Continuous Development
11–20 of 26 posts
Re: Pipelines: Your Doorway to Continuous Development
#12Earlier quoted context omitted.
Hi Chris, Why do you think it's just another CI platform now? :)
What does this do that CircleCI doesn't? Why should I switch from CircleCI to this?
Re: Pipelines: Your Doorway to Continuous Development
#13I use CircleCI and I am very satisfied. But I will take a look on Buddy, it seems more easy to configure, apparently. CircleCI don't have a clear documentation about all the possibilites the service can do.
Re: Pipelines: Your Doorway to Continuous Development
#14Earlier quoted context omitted.
Hi oblio, Thanks for pointing out the errors, we'll fix that. We've been around for over a year with half a year of beta period before that. The whole thing is really fast and stable: we chose Docker containers to run builds which ensures speed and compatibility across the whole team + contrary to some other CI/CD software we only deploy changed files which results in really fast deployments. What languages/framework…
Generally Java at work but Python and .NET when I get the chance. Is there any chance for Windows Docker containers? I know it's tricky and could be costly...
Re: Pipelines: Your Doorway to Continuous Development
#15Re: Pipelines: Your Doorway to Continuous Development
#16buddy install clearly uses docker-compose, just give users the docker-compose file!
Re: Pipelines: Your Doorway to Continuous Development
#17This looks very promising. I've been looking for a ci/CD platform that builds docker images and has pipelines. I even started building my own cause I couldn't find anything out there.
Re: Pipelines: Your Doorway to Continuous Development
#18This looks very promising. I've been looking for a ci/CD platform that builds docker images and has pipelines. I even started building my own cause I couldn't find anything out there.
Re: Pipelines: Your Doorway to Continuous Development
#19Interestingly, we open sourced Pipelines[1] a week ago.
We felt a lot of the automation platforms out there are still very focused on a narrow "clone from GitHub/BitBucket → build → test → deploy" use case.
The only alternatives we had for more complicated scenarios were things like Jenkins. I'm not a fan. With Pipelines, you get up and running in 2 minutes with:
pip install pipelines
We use Ansible, Docker and a few other tools that just need to be easily run and orchestrated. We also wanted to have logs and letting colleagues easily trigger things from Slack/Web UI.We're adding a few plugin (Docker, scheduler, LDAP, GitHub login, SMS...) for some of our needs. Would be interesting to see how this works for other people.
Re: Pipelines: Your Doorway to Continuous Development
#20Earlier quoted context omitted.
Generally Java at work but Python and .NET when I get the chance. Is there any chance for Windows Docker containers? I know it's tricky and could be costly...
We've got dedicated build actions for Java, .NET/.NET Core and Python that you can use to build and test your app. What do you mean by Windows Docker containers exactly?