Skip to content

Latest commit

 

History

History

jenkins-slave-golang

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

jenkins-slave-golang

Provides a docker image of the golang runtime for use as a Jenkins slave.

Build local

docker build -t jenkins-slave-golang .

Run local

For local running and experimentation run docker run -i -t jenkins-slave-golang /bin/bash and have a play once inside the container.

Build in OpenShift

oc process -f ../../.openshift/templates/jenkins-slave-generic-template.yml \
    -p NAME=jenkins-slave-golang \
    -p SOURCE_CONTEXT_DIR=jenkins-slaves/jenkins-slave-golang \
    | oc create -f -

For all params see the list in the ../../.openshift/templates/jenkins-slave-generic-template.yml or run oc process --parameters -f ../../.openshift/templates/jenkins-slave-generic-template.yml.

Jenkins

Add a new Kubernetes Container template called jenkins-slave-golang (if you've build and pushed the container image locally) and specify this as the node when running builds. If you're using the template attached; the role: jenkins-slave is attached and Jenkins should automatically discover the slave for you. Further instructions can be found here. There are path issues with Jenkins permissions and Go when trying to run a build so easiest way to fix this is to setup the GOLANG path to be same as the WORKSPACE

export GOPATH=${WORKSPACE}
go get -v -t ./...
go build -v
# if there are Ginkgo tests then also run this!
$GOPATH/bin/ginkgo -r --cover -keepGoing