I guess this is the same pricing model as CircleCI? I've always found "build minutes" to be a little bit of a vendor-favored pricing model. I really love wanting to do a release, and watching my CI provider take three minutes to pull down a 30MB docker image, or "npm install" running at dialup speeds. All while they're billing you per minute -- they make money by not investing in their infrastructure! I'd prefer to p…
For reference, travis CI was sold to an investment company some time ago. The strategy is 100% to not improve the infrastructure, fire all the developers to save costs, and milk money from existing customers for as long as possible. Travis bought out https://news.ycombinator.com/item?id=18978251 Staff laid off the next month https://news.ycombinator.com/item?id=19218036
The new pricing model for Travis CI
71–80 of 88 posts
Re: The new pricing model for Travis CI
#72I guess this is the same pricing model as CircleCI? I've always found "build minutes" to be a little bit of a vendor-favored pricing model. I really love wanting to do a release, and watching my CI provider take three minutes to pull down a 30MB docker image, or "npm install" running at dialup speeds. All while they're billing you per minute -- they make money by not investing in their infrastructure! I'd prefer to p…
This is why I strongly prefer BYO-agents systems (github actions, buildkite, jenkins). I got our CI pipeline from 90 minutes to 10 minutes by running parts in parallel and applying lots more hardware. The cost is essentially nothing ($0.10 / build) compared to the time developers spend waiting. I currently use & recommend buildkite because they offer a preconfigured cloudflare template that does all of the hard parts…
Re: The new pricing model for Travis CI
#73Since their acquisition they have just been going downhill. I've been planning to move all my projects to Github Actions for a while. This is the "drop that overlfows the glass" as we say in Spanish, I'm putting everything aside tomorrow to migrate all my public and private projects to Github Actions.
Re: The new pricing model for Travis CI
#74Re: The new pricing model for Travis CI
#75It seems GitLab CI/CD is beating Travis CI on pretty much every metric now, except the weirdness of only using GitLab for CI/CD and not code hosting, if you prefer to use GitHub for that. Am I missing something? (GitLab supports using its CI/CD on a non-GitLab repo just fine, but it can cause some initial confusion.)
Travis CI has unique feature - support for ARMv8, PowerPC, and SystemZ build environments. GitHub doesn't have this multiplatform building environment.
Re: The new pricing model for Travis CI
#76Earlier quoted context omitted.
This is why I strongly prefer BYO-agents systems (github actions, buildkite, jenkins). I got our CI pipeline from 90 minutes to 10 minutes by running parts in parallel and applying lots more hardware. The cost is essentially nothing ($0.10 / build) compared to the time developers spend waiting. I currently use & recommend buildkite because they offer a preconfigured cloudflare template that does all of the hard parts…
Wait how is github actions a BYO-agent system? I thought you can only run actions on github's infra?
https://docs.github.com/en/free-pro-team@latest/actions/host...
Re: The new pricing model for Travis CI
#77It seems GitLab CI/CD is beating Travis CI on pretty much every metric now, except the weirdness of only using GitLab for CI/CD and not code hosting, if you prefer to use GitHub for that. Am I missing something? (GitLab supports using its CI/CD on a non-GitLab repo just fine, but it can cause some initial confusion.)
External Gitlab CI is funny because requires you to replicate the repo to their side and then glue everything together (build status, PRs, etc) by yourself Then they moved the repository replication to the paid plan (20$/month/user). For a simple 10 person team, that's 200$ a month. Exclusively to get access to repository replication !! I have my own runners, so there's no reason to pay for the paid plan. I just end…
It looks like "pull" replication is available on the $4/mo. plan, per their documentation.
Re: The new pricing model for Travis CI
#78Earlier quoted context omitted.
I like Gitlab and I tried them for a year before moving off of their CI couple of years back. Main reason was their CI was slow and had some reliability problems at the time. Hopefully they have resolved those by now as I would like to see more adoption of their service for sure. Will give them another shot soon :-)
I recently found a comparison¹ which was interesting. Of course, it's gitlab's so take that as you will. [1] https://about.gitlab.com/devops-tools/github-vs-gitlab/#comp...
Re: The new pricing model for Travis CI
#79I guess this is the same pricing model as CircleCI? I've always found "build minutes" to be a little bit of a vendor-favored pricing model. I really love wanting to do a release, and watching my CI provider take three minutes to pull down a 30MB docker image, or "npm install" running at dialup speeds. All while they're billing you per minute -- they make money by not investing in their infrastructure! I'd prefer to p…
[1]: https://yourbase.io
Re: The new pricing model for Travis CI
#80Earlier quoted context omitted.
Wait how is github actions a BYO-agent system? I thought you can only run actions on github's infra?
They can run on github's infra, but you can host your own agent as well. https://docs.github.com/en/free-pro-team@latest/actions/host...