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