Files
golang-test/Jenkinsfile
Mpho Rafutho d0f6411d3d
All checks were successful
test-jenkins/golang-test/pipeline/head This commit looks good
removed the label for scripted node
2020-07-19 00:03:35 +02:00

11 lines
197 B
Groovy

/* Requires the Docker Pipeline plugin */
/* Scripted pipeline */
node {
checkout scm
stage('Build') {
docker.image('golang').inside {
sh 'go version'
}
}
}