Zaktualizuj 'Jenkinsfile'

This commit is contained in:
Klaudia Kandulska 2020-12-03 14:04:28 +01:00
parent a5bb3997d4
commit a1e58ccf4a

17
Jenkinsfile vendored
View File

@ -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....'
}
}
}