BuyAndKnow/Jenkinsfile
Stanislaw-Golebiewski c12d2fa8f6 work plz
2019-11-25 14:59:47 +01:00

19 lines
410 B
Groovy

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