BuyAndKnow/Jenkinsfile
Stanislaw-Golebiewski 4cab54b3f9 change Jenkinsfile
2019-11-25 14:13:34 +01:00

18 lines
351 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Build') {
steps {
sh 'ls'
sh 'ls /usr/share/tesseract-ocr/4.00/tessdata/'
sh 'python main.py -i img/biedra.jpg'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
}
}