thesharp / golang-jenkins

API client of Jenkins API written in Go

Home Page:http://godoc.org/github.com/yosida95/golang-jenkins

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

golang-jenkins

Join the chat at https://gitter.im/yosida95/golang-jenkins

About

This is a API client of Jenkins API written in Go.

Usage

import "github.com/yosida95/golang-jenkins"

Configure authentication and create an instance of the client:

auth := &gojenkins.Auth{
   Username: "[jenkins user name]",
   ApiToken: "[jenkins API token]",
}
jenkins := gojenkins.NewJenkins(auth, "[jenkins instance base url]")

Make calls against the desired resources:

job, err := jenkins.GetJob("[job name]")

License

golang-jenkins is licensed under the MIT LICENSE. See ./LICENSE.

About

API client of Jenkins API written in Go

http://godoc.org/github.com/yosida95/golang-jenkins

License:MIT License


Languages

Language:Go 100.0%