tdb/Jenkinsfile
2020-04-15 23:53:50 -05:00

16 lines
230 B
Groovy

pipeline {
agent any
stages {
stage('build') {
steps {
checkout scm
script {
docker.image("golang:1.14-alpine").inside {
sh './test.sh'
}
}
}
}
}
}