Ajouter 'Jenkinsfile'

This commit is contained in:
Samuel Vermeulen 2018-10-23 23:10:39 +02:00
parent ea3ebd0a40
commit 7590f3f177

15
Jenkinsfile vendored Normal file
View File

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