tdb/Jenkinsfile

16 lines
230 B
Plaintext
Raw Normal View History

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