BuyAndKnow/Jenkinsfile
Stanislaw-Golebiewski 411b1ea482 change Jenkinsfile
2019-11-25 13:54:35 +01:00

16 lines
277 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Build') {
steps {
sh 'python main.py -i img/biedra.jpg'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
}
}