Zaktualizuj 'Jenkinsfile'
This commit is contained in:
parent
a5bb3997d4
commit
a1e58ccf4a
17
Jenkinsfile
vendored
17
Jenkinsfile
vendored
@ -1,9 +1,20 @@
|
||||
pipeline {
|
||||
agent { docker { image 'python:3.5.1' } }
|
||||
agent any
|
||||
|
||||
stages {
|
||||
stage('build') {
|
||||
stage('Build') {
|
||||
steps {
|
||||
sh 'python --version'
|
||||
echo 'Building..'
|
||||
}
|
||||
}
|
||||
stage('Test') {
|
||||
steps {
|
||||
echo 'Testing..'
|
||||
}
|
||||
}
|
||||
stage('Deploy') {
|
||||
steps {
|
||||
echo 'Deploying....'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user