<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: José Quintero</title>
    <description>The latest articles on DEV Community by José Quintero (@jquintero).</description>
    <link>https://dev.to/jquintero</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F61353%2Fd2a0af79-4760-4e3f-b120-93ef5d0b93e1.jpg</url>
      <title>DEV Community: José Quintero</title>
      <link>https://dev.to/jquintero</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jquintero"/>
    <language>en</language>
    <item>
      <title>Free CI/CD for your personal or entrepreneurial endeavors! 💸</title>
      <dc:creator>José Quintero</dc:creator>
      <pubDate>Sun, 28 Oct 2018 22:48:07 +0000</pubDate>
      <link>https://dev.to/jquintero/free-cicd-for-your-personal-or-entrepreneurial-endeavors--4dd0</link>
      <guid>https://dev.to/jquintero/free-cicd-for-your-personal-or-entrepreneurial-endeavors--4dd0</guid>
      <description>

&lt;p&gt;&lt;em&gt;Don't worry, this is not one of those camouflaged "Surprise! I'm actually promoting a product" posts&lt;/em&gt; 😄&lt;/p&gt;

&lt;p&gt;If you're following the software/tech bubble and browse here, on LinkedIn, medium or similar sites you'll find that continuous integration and continuous delivery &lt;em&gt;seems&lt;/em&gt; to have become pretty much a de-facto standard practice in the industry (or at least that's what I've perceived)&lt;/p&gt;

&lt;p&gt;While that may be true in some places or tech-first companies, at least where I'm from, not every developer is blessed with the ability to commit changes and seeing them live in a couple of minutes.&lt;/p&gt;

&lt;h2&gt;How the topic came to mind&lt;/h2&gt;

&lt;p&gt;I'm currently taking a masters degree and I've had the chance to share experiences with other classmates/colleagues working as software engineers in the industry, from different sectors (banking, insurance, supply chain, etc.). I have not been  particularly active in meetups or groups before (though I'm trying to change that), so these kinds of interactions have been very interesting and productive.&lt;/p&gt;

&lt;p&gt;My getaway from discussing the topic of CI/CD with my colleagues as part of class or as overall chit-chat is that if a tech product is not your main source of business, or if what you've got works well, you're generally going to be skeptical of adopting or investing in these kinds of practices and their related tools.&lt;/p&gt;

&lt;p&gt;This is emphasized if you work in a company with a &lt;a href="https://en.wikipedia.org/wiki/Mission_critical#Mission_critical_systems"&gt;mission critical system&lt;/a&gt; that has worked forever and is very hard to change the known-to-work software engineering processes and culture. This could be the case of the banking industry, for instance. The case of companies that adopt agile practices is different for everyone of course and can't be generalized, but this is what I've observed.&lt;/p&gt;

&lt;p&gt;While we as software engineers are aware of the benefit of CI/CD in the speed of development and testing of software, often the people with the decision power to make investments in these kinds of tools are not, and you're left having to practice your convincing skills.&lt;/p&gt;

&lt;p&gt;This discussion left me with some questions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How can I make a CI/CD pipeline proof-of-concept with minimal or zero cost? Perhaps to convince someone or make a business case&lt;/li&gt;
&lt;li&gt;What can I do if I'm an entrepreneur and want to have a CI/CD pipeline?&lt;/li&gt;
&lt;li&gt;What if I just have a side-project that is getting some traction?&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;The result&lt;/h2&gt;

&lt;p&gt;This questions led me to research (read: google) what I could get for free right now. I've found that surprisingly there are several options:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;This list is obviously non-exhaustive and mostly focused on build/hosting services. Link to the pricing page is included to see any fine prints.&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;Free for OSS&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://zeit.co/pricing"&gt;Now by zeit.co&lt;/a&gt;: Described in their own words as &lt;em&gt;global serverless deployments&lt;/em&gt; for node.js and docker based projects, this service lets you host your projects. You can set application variables per environment and deploy from a CLI tool. The first non free tier plan is almost as cheap as a Netflix subscription.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://travis-ci.com/plans"&gt;Travis CI&lt;/a&gt;: Another CI service for building and testing often used in conjunction with github and heroku.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;Free as in free beer:&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://www.heroku.com/pricing"&gt;Heroku&lt;/a&gt;: Allows you to host your app. Their free dynos tier puts your app to sleep if there is no traffic so this is excellent for trying things out.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://bitbucket.org/product/pricing"&gt;Bitbucket&lt;/a&gt;: Atlassian suite that includes git repositories, trello boards, and bitbucket pipelines, along with issue tracking and several other things (pull requests, environment variables, etc). The pipelines feature is very similar to circle-ci and allows you to commit a file in your project that configures a docker container to build your app in. &lt;strong&gt;50 build minutes per month&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://circleci.com/pricing/"&gt;Circle CI&lt;/a&gt;: Similar to bitbucket pipelines (Builds your project inside a docker container, configured from a file). &lt;strong&gt;1000 minutes free for 1 month and 1 container on linux&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://azure.microsoft.com/en-us/pricing/details/devops/azure-devops-services"&gt;Azure Devops, previously known as VSTS or Visual Studio Team Services&lt;/a&gt;: Microsoft's offer includes git repositories, issue tracking, kanban boards, and builds among other things. Builds are configured from their web interface instead of using a file. The free tier has &lt;strong&gt;unlimited&lt;/strong&gt; users and build time.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://about.gitlab.com/pricing/"&gt;Gitlab&lt;/a&gt;: Gitlab's suite free tier includes repository, issue boards and &lt;strong&gt;2,000 CI pipeline minutes per month&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I've had the chance to use bitbucket, heroku and VSTS in the past, and while there are some limitations, my experience has been great so far.&lt;/p&gt;

&lt;p&gt;Has your company embraced devops, ci/cd pipelines or any of these practices? Do you know of any other free or partially free ci/cd services? What has been your experience with the free version of these tools or services?&lt;/p&gt;

&lt;p&gt;&lt;em&gt;This is my first post here (or anywhere for that matter) so I'm open to suggestions!&lt;/em&gt;&lt;/p&gt;


</description>
      <category>discuss</category>
      <category>cicd</category>
      <category>opinion</category>
      <category>devops</category>
    </item>
  </channel>
</rss>
