Playing with Jenkins Pipelines & Golang
docker pull jenkinsdocker run -d -p [your port here]:8080 -v [your host path here]:/var/jenkins_home:z -t jenkins- Install Jenkins' go plugin. Manage Jenkins -> Global Tool Configuration -> Add Go -> Name =
Go 1.9 - Warnings plugin
- Cobertura plugin
- Create a new pipeline job
- Use github to this repo.
- Pipeline -> Pipeline script from SCM
- SCM Git, pointed at this repo!
- Script file should be
Jenkinsfile
- Use default scm
- default
go compile golint&go vet, both plumbed to warnings- Go Test w/ coverage converted and plumbed to Cobertura
- Jobs DSL plugin
- Authorize Project Plugin [ to prevent script auth pain]
Mange Jenkins->Configure Global Security->Access Control For Builds->Run as User who triggered build
- Groovy Plugin
- Create a new freeform job.
- SCM Git, Pointed at this repo
- Add Build Step -> Process Job DSLs.
- Look on Filesystem
- DSL Scripts
JobsFile - Save
- Click
Authorizationon the left nav of the project page - Check
Configure Build Authorizationand SelectRun as User who Triggered Build - Run it
- see that a job called
PipelineFromDSLwas created, run that and hopefully it works and made a beautiful pipeline build!