Best of CI/CDOctober 2021

  1. 1
    Article
    Avatar of gcgitconnected·5y

    Basics of CI/CD

    Continuous Integration and Continuous Delivery describe the process of the changes flows to the repository. CI server clones the repository, checkouts to the source branch, and merges with the master branch. If the build is successful, then the Pull Request is allowed to merge. Otherwise, the merge is blocked. The Jacoco plugin can solve the problem easily.

  2. 2
    Article
    Avatar of sdtimesSD Times·5y

    JetBrains launches code quality platform Qodana

    Qodana is a universal code quality platform for continuous integration. Allows developers to do smart checks and edits from within in their JetBrains IDE. Based on the company’s Java IDE, IntelliJ IDEA, and allows developers to perform static analysis of Java codebases.

  3. 3
    Article
    Avatar of rbloggersR-bloggers·5y

    Git: Moving from Master to Main

    At Jumping Rivers our default branch ( master / main ) is protected. This means that we can’t directly push into a repository. Instead we need to create a branch and merge. All repositories have a CI process. This ranges from very elaborate pipelines to simple checks on the contents of committed files.