For further actions, you may consider blocking this person and/or reporting abuse
Read next
Create and Deploy a Linux Virtual Machine on Azure using a Public Key
Oluwafemi Adebayo -
5 costly mistakes when deploying Docker containers (and how to dodge them like a pro 😎)
Lukas Mauser -
Managing AWS EKS with Terraform
Mariam Adedeji -
Top Debugging Tools Every Developer Should Know
Wanda -
Top comments (23)
GitLab-CI:
Very cool, we just got Gitlab Enterprise at work (after sitting on Gitlab 6 for years) and I am excited to try the CI stuff out.
Do you mean "...sitting on Github"? 'Cause CI access is included even in the free GitLab packages.
Hmm, yeah our local Gitlab instance only has the Git part available as far as I can tell.
Bitbucket Pipelines:
But I'm biased since I was the lead product manager for it back when I was at Atlassian 😅 (still think the team did a stellar job - and it's great to watch it grow from the sidelines now).
The pipeline config is close to the code which makes it visible and accessible to the devs. This makes the pipelines more dev-ish than some pipeline scripts that sit in another repo that I cannot even access and are maintained by an ops guy that sits in an office 3 buildings away...
Even I like Bitbucket but what I don't like is the outdated UI and it is a bit confusing.
I've had a love/hate thing going with Jenkins for about a decade now. It's fantastically powerful but an absolute bear to use.
Jenkins - The swiss army knife of CI tools.
I like the options they now have to represent pipelines as code. That way you can define maintain and scale the build definitions in code and have them versioned with your project.
Same here, I have a love/hate relationship with Jenkins.
I like Jenkins because,
I hate Jenkins because,
I prefer CircleCI, Codeship or Shippable.
I was actually pretty happy with multibranch pipelines at my last job! The only problem is the same problem with pipelines in general -- poorly documented Groovy APIs and script approvals.
So true! I was just trying to do something very simple and I couldn't find any info on how to interact with plugins (eventually figured it out by modifying an example).
It's really amazing that in 2018 the way you get your coverage report in Pipelines is still
because there isn't a proper step defined.
Shameless plug: I created a new CI/CD tool called AlloyCI.
It is written in Elixir, and is heavily based on GitLab CI. It, in fact, can use the GitLab CI Runner as an executor for all the jobs. It also provides its own runner, that is a fork of GitLab's.
For the time being it is still in beta, but the main goal is to make it a viable option for people looking for a new CI tool.
As of right now, it has about 85% of the functionality that GitLab CI has, configuration is written in JSON (but we are thinking about transitioning to YAML), and it should be pretty straight forward to install and use. We provide Docker Images to get started quickly, and also a "Deploy to Heroku" button to try it out there too.
The main use for AlloyCI is to install it on premises, and add as many runners as you need. Since the runners are written in Go, binaries are available for all platforms. It supports Docker, Docker+Machine, SSH, VirtualBox, and Shell as ways to execute your builds.
With Docker+Machine you can have auto-scalable runners, e.g. one machine is in charge of deploying and destroying other runners. This works great with Digital Ocean. Runners will be created as needed, and everything about how many are created, how long they stay up, and more can be easily configured.
Since it is written in Elixir, it consumes very little system resources, it's highly stable, and should be able to process large amounts of concurrent requests.
I would love it if you could give it a try, and tell us what you like, what you don't like, what you hate, what you love, etc.
We really want to make AlloyCI a true alternative ❤️
Nice. Yes, transitioning to YAML is a good option, it makes the tool easy to use. All the very best:)
Note:
I spent many years working with Jenkins and switch to GitLab CI 2 years ago. I've also used travis.
I like GitLab CI the most, here's a list of nice features:
And here are a few things where Jenkins is better:
You can have the "'don't clean the git repo after checkout' option". It's under "Git strategy" in runner settings. Doesn't really make a difference if you are using containers as they're disposed after a job completes but if you are using are SSH executor it doesn't clean the workspace.
Wow I somehow missed that. Thanks !
Cake scripts that are then called verbatim via whatever tool I want. Script is sourced with project and calls to it are the same locally as with whatever CI/CD tool you choose. Keeps the "tool" exactly the same as the local setup and allows for easy migration to another tool (not that one would do that much).
concourse-ci.org/
Good option.
Codeship because it's integrated with Heroku and easy to use :-)
Some comments may only be visible to logged-in visitors. Sign in to view all comments.