15 lines
213 B
Groovy
15 lines
213 B
Groovy
|
|
Jenkinsfile (Declarative Pipeline)
|
|
|
|
pipeline {
|
|
agent { docker 'python:3.5.1' }
|
|
stages {
|
|
stage('build') {
|
|
steps {
|
|
sh 'python --version'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|