Dodanie 'Jenkinsfile'

This commit is contained in:
Klaudia Kandulska 2020-12-03 13:53:44 +01:00
parent 48b82d738d
commit 31aeba028d

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent { docker { image 'python:3.5.1' } }
stages {
stage('build') {
steps {
sh 'python --version'
}
}
}
}