BuyAndKnow/Jenkinsfile
2019-11-25 13:43:17 +01:00

18 lines
298 B
Groovy

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