Best of CI/CDJune 2022

  1. 1
    Article
    Avatar of hackernoonHacker Noon·4y

    CI CD Pipeline: How to Setup a CI CD Pipeline From Scratch with GitHub Actions.

    CI/CD is the combined practices of continuous integration and continuous delivery or continuous deployment. It bridges the gaps between development and operation activities and teams by enforcing automation in building, testing and deployment of applications. The pipeline builds code, runs tests and deploys a new version of your application (CD) to the test or production environment.

  2. 2
    Article
    Avatar of ghblogGitHub Blog·4y

    A beginner’s guide to CI/CD and automation on GitHub

    GitHub Actions is a native CI/CD tool that runs alongside your code in GitHub. A GitHub Actions workflow can be designed to respond to any webhook event on GitHub. You can write your own workflows (or customize an existing workflow) in easy-to-use YAML files.

  3. 3
    Article
    Avatar of semaphoreSemaphore·4y

    5 Ways to Run Faster CI/CD Builds

    A CI/CD pipeline is like a train: it takes your code and delivers a deployable package. Add horsepower to the train and it will be able to do more work in less time. vertically scaling your CI machine means processor-bound tasks, like building executables, run faster. Use artifacts and cache to dramatically speed up your build time.