ExJenkins

Hex.pm

Your Jenkins client written in elixir

ExJenkins is client to consume the Jenkins API.

Installation

def deps do
  [{:ex_jenkins, "~> 0.1.2"}]
end

In your configuration file add something similar to:

config :ex_jenkins,
  host: "localhost",
  protocol: "http", # http or https.  Default is http
  port: "8080",
  username: "username",
  password: "password",
  token: "mytoken"

You must as well start ex_jenkins in your application list:

applications: [:ex_jenkins]

List of Jenkins API you can consume with ExJenkins

With ExJenkins you can consume the following Jenkins endpoints:

If you want to know more on using ExJenkins you may read the online documentation.

You can also build the docs on your machine with:

mix docs