Groovy Jenkins

Open-source Groovy projects categorized as Jenkins

Top 14 Groovy Jenkin Projects

  • devops-resources

    DevOps resources - Linux, Jenkins, AWS, SRE, Prometheus, Docker, Python, Ansible, Git, Kubernetes, Terraform, OpenStack, SQL, NoSQL, Azure, GCP

  • job-dsl-plugin

    A Groovy DSL for Jenkins Jobs - Sweeeeet!

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • JenkinsPipelineUnit

    Framework for unit testing Jenkins pipelines

  • ansible-role-jenkins

    Ansible Role - Jenkins CI

  • job-dsl-gradle-example

    An example Job DSL project that uses Gradle for building and testing.

  • jenkins-script-console-scripts

    A repository of one-off script console scripts for Jenkins.

  • jenkins-bootstrap-shared

    Jenkins as immutable infrastructure made easy. A repository of shared scripts meant to be used as a git submodule. Packing Jenkins, plugins, and scripts into immutable packages and images.

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  • pipeline-library

    Collection of custom steps and variables for our Jenkins instance(s)

  • jervis

    Self service Jenkins job generation using Jenkins Job DSL plugin groovy scripts. Reads .jervis.yml and generates a job in Jenkins.

  • Project mention: mTLS in 15 Minutes | /r/devops | 2023-06-10

    Clone my jervis project which has some java-based encryption

  • gitops-playground

    Creates a complete GitOps-based operational stack on your Kubernetes clusters

  • jira-trigger-plugin

    Triggers a build when a certain condition is matched in JIRA

  • ods-jenkins-shared-library

    Shared Jenkins library which all ODS projects & components use - provisioning, SonarQube code scanning, Nexus publishing, OpenShift template based deployments and repository orchestration

  • jenkins-std-lib

    Bringing the Zen of Python to Jenkins.

  • Project mention: The worst thing about Jenkins is that it works | news.ycombinator.com | 2023-12-03

    > On a previous team I had used Concourse CI to some extent, but I wasn’t really blown away by the experience. Travis and Circle were mentioned. I was a fool. I should have committed to seriously researching some of the contenders and making a more informed decision, but I lacked the willpower and the discernment.

    The whole post can be summed up as he had very little CICD experience. Made lots of beginner mistakes, which is easy to do in Jenkins. Then decided to write a post where all his complaints about Jenkins are not only wrong but are the issues that plague all the other CICD tools.

    > So instead of writing Bash directly, you’re writing Bash inside Groovy

    Why are you doing that? You have a fully featured programming language and you are running `sh('npm install')`. You could do this instead https://github.com/DontShaveTheYak/jenkins-std-lib/blob/mast... . How is bash inside of YAML better?

    > The trouble is: Groovy is a much, much worse language for executing commands than Bash. Bash is interpreted, has a REPL that is great for experimentation, does require a ton of imports, and has lightweight syntax. Groovy has none of these things.

    Groovy has a language server, linters and a vscode IDE plugins. They are probably not as stable or full featured as the bash ones, but they are available and very few take advantage of them. Again, how is YAML+Bash better?

    > The way that developers test their Groovy steps is by triggering a job on the remote Jenkins server to run them. The feedback loop is 2 orders of magnitude slower than it is for just executing Bash locally.

    This is a rookie mistake. For about 60-75% of pipelines you can run them locally in a docker container on your local machine. You can even set up hot code reload so as you change your pipeline the Jenkins reloads it. You can also configure the job to kick off a build when it reloads the code. When Jenkins is configured correctly it has the fastest feedback loop of any CICD tool on the market. GitHub actions comes in a close second since it can also be run locally but you cant run a "clone" of what you run in production, like having the same secrets, so it gets second place. Beside Jenkins and GitHub actions, I dont know of any solutions for the other tools.

    You can run a GitHub action on Jenkins. It's a very deep and complex system. It's like an iceberg and so many engineers dont leave the surface before deciding it sucks and one of the YAML CICD tools is better. Sure the YAML alternatives are EASY to get started with and to do basic stuff with. But they are Terrible at anything complex. While Jenkins is not easy to get started with, once mastered, you can build complex pipelines with ease.

    I get that I'm a Jenkins fanboy. Most of the things I mentioned above, I either contribute to or I'm the author of. I know Jenkins has issues. I know it has hurt lots of people, I read the complaints online. But it's still the best out there. The best software in the world is not written in bash or yaml and the same is true of the best CICD pipelines in the world. It's a shame very few people get to see/use those pipelines.

  • ci-cd_project

    My tech journey

  • Project mention: My First CI/CD Pipeline with JENKINS! | dev.to | 2023-08-18
  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

Groovy Jenkins related posts

  • mTLS in 15 Minutes

    1 project | /r/devops | 10 Jun 2023
  • Static code analysis for pipeline code itself

    3 projects | /r/jenkinsci | 25 Apr 2023
  • Looking for a speaker on a panel on "how to make the most of Jenkins", pm me if interested

    6 projects | /r/devops | 31 Mar 2023
  • junior dev ops here - need to configure Linux and Windows build/dev workstations on demand, for CI/CD pipelines and on-premise developers with special drivers/install processes that sometimes take 2-3 days manually. ML/AI. What tech stacks would you advise for config?

    2 projects | /r/devops | 21 Jan 2023
  • What is the best course/courses to learn pipeline as code with Groovy and Jenkins

    4 projects | /r/devops | 17 Jan 2023
  • What do you use for storing your git history in production?

    3 projects | /r/GitOps | 16 Jan 2023
  • How to setup docker as a development environment ?

    2 projects | /r/docker | 11 Dec 2022
  • A note from our sponsor - InfluxDB
    www.influxdata.com | 3 Jun 2024
    Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality. Learn more →

Index

What are some of the best open-source Jenkin projects in Groovy? This list will help you:

Project Stars
1 devops-resources 8,258
2 job-dsl-plugin 1,884
3 JenkinsPipelineUnit 1,525
4 ansible-role-jenkins 820
5 job-dsl-gradle-example 439
6 jenkins-script-console-scripts 437
7 jenkins-bootstrap-shared 323
8 pipeline-library 282
9 jervis 268
10 gitops-playground 170
11 jira-trigger-plugin 112
12 ods-jenkins-shared-library 68
13 jenkins-std-lib 48
14 ci-cd_project 0

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com