BuyAndKnow/Jenkinsfile
2019-11-25 13:51:22 +01:00

19 lines
299 B
Groovy

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